diff options
Diffstat (limited to 'ld_script.txt')
-rw-r--r-- | ld_script.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ld_script.txt b/ld_script.txt index ff0b1b18..4d20c18e 100644 --- a/ld_script.txt +++ b/ld_script.txt @@ -36,4 +36,29 @@ SECTIONS { build/asm/rom3.o(.text); } END_SEG(rom3) + + BEGIN_SEG(gap1, 0x2000000 + SIZEOF(rom3) + SIZEOF(arm9)) + { + build/asm/gap1.o(.text); + } + END_SEG(gap1) + + BEGIN_SEG(arm7, 0x02380000) + { + build/asm/arm7_rom.o(.text); + } + END_SEG(arm7) + + BEGIN_SEG(gap2, 0x02380000 + SIZEOF(arm7)) + { + build/asm/gap2.o(.text) + } + END_SEG(gap2) + + . = 0x336400; + BEGIN_SEG(FileNameTable, 0x02400000) + { + build/asm/filenametable.o(.text); + } + END_SEG(FileNameTable) } |