mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Basically make it always point to the instruction's first byte. This was the behavior all whom I asked to intuitively expected.
14 lines
215 B
NASM
14 lines
215 B
NASM
SECTION "fixed", ROM0[0]
|
|
|
|
rst @ ; rst 0
|
|
ld de, @ ; ld de, 1
|
|
bit @, h ; bit 4, h
|
|
db @, @ ; db 6, 7
|
|
|
|
SECTION "floating", ROM0
|
|
|
|
rst @ ; rst 8
|
|
ld l, @ ; ld l, 9
|
|
dw @, @ ; dw 11, 13
|
|
dl @, @ ; dl 15, 19
|