mirror of
https://github.com/gbdev/rgbds.git
synced 2026-08-20 13:54:33 +00:00
14 lines
155 B
NASM
14 lines
155 B
NASM
SECTION "test", ROM0
|
|
|
|
Global: dw Global
|
|
.ret dw .ret
|
|
.xor: dw .xor
|
|
Global.section: dw .section
|
|
|
|
DEF n EQU 42
|
|
.n: dw .n
|
|
|
|
MACRO foo
|
|
ENDM
|
|
.foo: dw Global.foo
|