diff options
Diffstat (limited to 'ld_script.txt')
-rw-r--r-- | ld_script.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ld_script.txt b/ld_script.txt index b7b825362..1b7656f38 100644 --- a/ld_script.txt +++ b/ld_script.txt @@ -9,7 +9,7 @@ SECTIONS { ewram (NOLOAD) : ALIGN(4) { -<EWRAM> + INCLUDE "sym_ewram.ld" . = 0x40000; } @@ -20,13 +20,13 @@ SECTIONS { ALIGN(4) { /* .bss starts at 0x3000000 */ -<BSS> + INCLUDE "sym_bss.ld" /* .bss.code starts at 0x3000F60 */ src/libs/m4a_2.o(.bss.code); /* COMMON starts at 0x3001760 */ -<COMMON> + INCLUDE "sym_common.ld" tools/agbcc/lib/libc.a:sbrkr.o(COMMON); end = .; . = 0x8000; @@ -167,7 +167,6 @@ SECTIONS { src/field/field_special_scene.o(.text); src/field/rotating_gate.o(.text); src/field/safari_zone.o(.text); - asm/contest_link_80C857C.o(.text); src/battle/contest_link_80C857C.o(.text); src/field/item_use.o(.text); src/battle/anim/powder.o(.text); |