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.
19 lines
146 B
19 lines
146 B
23 years ago
|
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:
|