22 lines
184 B
NASM
22 lines
184 B
NASM
|
[section .text]
|
||
|
aaa
|
||
|
aam
|
||
|
div ax
|
||
|
imul eax
|
||
|
|
||
|
[section .data]
|
||
|
db 'hello',0
|
||
|
|
||
|
[section .text]
|
||
|
div al
|
||
|
bswap eax
|
||
|
|
||
|
[section .bss]
|
||
|
resb 25
|
||
|
|
||
|
[section .data]
|
||
|
db 'bye!',0
|
||
|
|
||
|
[section .text]
|
||
|
mov ax, 5
|