mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
using for testing various things during development. Many don't even actually assemble, as they're testing error conditions. These all need to be integrated into a test suite at some point to be truly useful. svn path=/trunk/yasm/; revision=336
21 lines
184 B
NASM
21 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
|