mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
29 lines
537 B
NASM
29 lines
537 B
NASM
SECTION "Test", ROM0
|
|
|
|
_1234::
|
|
|
|
; without underscores
|
|
dw _1234 ; label
|
|
db 123, 123, 123 ; decimal
|
|
dw 12345 ; decimal
|
|
dw $abcd ; hex
|
|
db &200 ; octal
|
|
db %11110000, %10 ; binary
|
|
dl 6.283185 ; fixed point
|
|
dw `01233210, `00332211 ; gfx
|
|
|
|
; with underscores
|
|
dw _1234 ; label
|
|
db 123, 1_23, 12_3 ; decimal
|
|
dw 12_345 ; decimal
|
|
dw $ab_cd ; hex
|
|
db &2_0_0 ; octal
|
|
db %1111_0000, %1_0 ; binary
|
|
dl 6.283_185 ; fixed point
|
|
dw `0123_3210, `_00_33_22_11 ; gfx
|
|
|
|
; underscores with custom digits
|
|
opt g.ABC, b.X
|
|
db %.X.X_..XX
|
|
dw `.A.B_.C..
|