mirror of https://github.com/yasm/yasm.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
183 B
22 lines
183 B
23 years ago
|
[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
|