mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
13 lines
331 B
NASM
13 lines
331 B
NASM
SECTION "main", ROM0
|
|
LOAD FRAGMENT "test", SRAM
|
|
ENDL
|
|
|
|
; The RPN patch for 'jr Label' in section "alt" refers to section "test",
|
|
; but the object file puts section "test" after section "alt".
|
|
; This case needs to be handled when identifying patches' PC sections.
|
|
SECTION "alt", ROM0
|
|
LOAD FRAGMENT "test", SRAM
|
|
jr Label
|
|
Label:
|
|
ENDL
|