mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
11 lines
209 B
NASM
11 lines
209 B
NASM
section "zero", rom0
|
|
Zero::
|
|
db 1 % Zero
|
|
db 2 ** (Zero - 1)
|
|
db BANK(NonexistentSymbol)
|
|
db BANK("NonexistentSection")
|
|
db STARTOF("NonexistentSection")
|
|
db SIZEOF("NonexistentSection")
|
|
ldh [Zero], a
|
|
jr Zero + 200
|