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
18 lines
146 B
NASM
18 lines
146 B
NASM
db 1,2,
|
|
;db 1,#ss,3
|
|
;db 1.5
|
|
;dw 1.5
|
|
dd 1.5
|
|
dq 1.5
|
|
dt 1.5
|
|
dd "hello"
|
|
dq "hello"
|
|
dt "hello"
|
|
dd 0x1
|
|
dq 0x1
|
|
dt 0x1
|
|
dd hello
|
|
dq hello
|
|
dt hello
|
|
|
|
hello:
|