mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
In preparation for an upcoming change Makes for nicer error messages, complaining about EOF instead of newlines The hack had to be kept for the lexer raw mode to avoid a bug; see the relevant code comment for more info.
16 lines
252 B
NASM
16 lines
252 B
NASM
SECTION "fixed", ROM0[0]
|
|
|
|
rst @ ; rst 0
|
|
ld de, @ ; ld de, 1
|
|
bit @, h ; bit 4, h
|
|
jr @ ; jr 6
|
|
|
|
SECTION "floating", ROM0
|
|
|
|
rst @ ; rst 8
|
|
ld l, @ ; ld l, 9
|
|
db @, @ ; db 11, 12
|
|
dw @, @ ; dw 13, 15
|
|
dl @, @ ; dl 17, 21
|
|
jr @ ; jr 25
|