mirror of
https://github.com/gbdev/rgbds.git
synced 2026-09-15 18:27:06 +00:00
9 lines
224 B
NASM
9 lines
224 B
NASM
; This used to fail as moving to the next "alignment
|
|
; boundary" would wrap across 16 bits.
|
|
|
|
SECTION "A", HRAM[$FF80]
|
|
ds 96 ; fills $FF80..$FFDF, leaving 31 bytes free
|
|
|
|
SECTION "B", HRAM, ALIGN[7] ; 128-byte alignment
|
|
ds 32
|