mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
8 lines
210 B
NASM
8 lines
210 B
NASM
SECTION "test", ROM0
|
|
; '\0' is not special here; it's lexed as a line continuation...
|
|
DEF foo\0bar EQU 42
|
|
db foo\0bar
|
|
; ...just like any other non-whitespace character
|
|
DEF spam\Xeggs EQU 69
|
|
db spam\Xeggs
|