mirror of
https://github.com/gbdev/rgbds.git
synced 2026-05-08 10:59:36 +00:00
22 lines
298 B
NASM
22 lines
298 B
NASM
section "test", ROM0
|
|
Global: ; none of the `end*.local_*` identifiers below should get treated as keywords
|
|
|
|
if 0
|
|
println "no"
|
|
endc.local_no
|
|
if 1
|
|
println "yes"
|
|
endc.local_yes
|
|
|
|
rept 0
|
|
println "nope"
|
|
endr.local_nope
|
|
rept 1
|
|
println "yep"
|
|
endr.local_yep
|
|
|
|
macro mac
|
|
println "mac"
|
|
endm.local_mac
|
|
mac
|