Files
rgbds/test/asm/null-outside-string.asm
Rangi 5d998ef483 Restrict custom binary and graphics digits (#1693)
* Restrict custom binary and graphics digits

* Update documentation

* Fix build error
2025-05-22 10:52:51 +02:00

8 lines
210 B
NASM

SECTION "test", ROM0
; '\0' is not special here; it's lexed as a line continuation...
DEF foo\0qux EQU 42
db foo\0qux
; ...just like any other non-whitespace character
DEF spam\Xeggs EQU 69
db spam\Xeggs