mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
15 lines
189 B
NASM
15 lines
189 B
NASM
|
|
SECTION "Byte", ROM0
|
|
|
|
db 2
|
|
|
|
SECTION "ROM0", ROM0, ALIGN[16]
|
|
|
|
db 1
|
|
println @ ; Ensure that PC is constant.
|
|
|
|
SECTION "Mid-section align makes PC constant", ROM0
|
|
|
|
align 16, 42
|
|
println @
|