diff options
author | YamaArashi <shadow962@live.com> | 2016-05-27 15:08:48 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-05-30 02:19:25 -0700 |
commit | 0ebfe95d65fc2852a6b7f0528a2a114de7fe698e (patch) | |
tree | a20b2e0e839661df88664d6547841a3a79e07222 /ld_script.txt | |
parent | 1d8ca2c1b995be87bb78dcf9bdfdc1d924a48979 (diff) |
text.c
Diffstat (limited to 'ld_script.txt')
-rw-r--r-- | ld_script.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ld_script.txt b/ld_script.txt index a1341c13f..a414567a0 100644 --- a/ld_script.txt +++ b/ld_script.txt @@ -11,6 +11,7 @@ SECTIONS { { src/main.o(ewram_data); src/sprite.o(ewram_data); + src/text.o(ewram_data); } . = 0x3000000; @@ -19,6 +20,7 @@ SECTIONS { ALIGN(4) { src/sprite.o(.bss); + src/text.o(.bss); . = 0xF28; src/agb_flash.o(.bss); . = 0xF36; @@ -28,6 +30,7 @@ SECTIONS { src/m4a_2.o(.bss.code); src/main.o(iwram_data); src/sprite.o(iwram_data); + src/text.o(iwram_data); . = 0x5FD0; src/m4a_2.o(iwram_data); } @@ -40,7 +43,7 @@ SECTIONS { asm/crt0.o(.text); src/main.o(.text); src/sprite.o(.text); - asm/rom1.o(.text); + src/text.o(.text); src/string_util.o(.text); asm/rom2.o(.text); src/rtc.o(.text); @@ -93,6 +96,8 @@ SECTIONS { src/main.o(.rodata); src/sprite.o(.rodata); . += 0x8; /* Why the gap? */ + src/text.o(.rodata); + src/string_util.o(.rodata); data/data2.o(.rodata); src/m4a_tables.o(.rodata); data/sound_data.o(.rodata); |