diff options
author | sceptillion <33798691+sceptillion@users.noreply.github.com> | 2017-12-11 02:23:26 -0800 |
---|---|---|
committer | sceptillion <33798691+sceptillion@users.noreply.github.com> | 2017-12-11 02:44:20 -0800 |
commit | b2685320790a582a289f2821f328cac7e425cf61 (patch) | |
tree | 47a6dc6e5bf4a85c9b05dd08e507d21279d7cc0e /ld_script.txt | |
parent | 66219cd4afaa5bca25fa722b9194b5c55341a0f6 (diff) |
split file archives
Diffstat (limited to 'ld_script.txt')
-rw-r--r-- | ld_script.txt | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/ld_script.txt b/ld_script.txt index 2f8b921..847e6cc 100644 --- a/ld_script.txt +++ b/ld_script.txt @@ -90,6 +90,61 @@ SECTIONS { data/unk_data.o(.rodata); } + . = 0x8300500; + system_sbin_section : + ALIGN(4) + { + data/system_sbin.o(.rodata); + } + + . = 0x8380000; + titlemenu_sbin_section : + ALIGN(4) + { + data/titlemenu_sbin.o(.rodata); + } + + . = 0x83B0000; + dungeon_sbin_section : + ALIGN(4) + { + data/dungeon_sbin.o(.rodata); + } + + . = 0x8510000; + monster_sbin_section : + ALIGN(4) + { + data/monster_sbin.o(.rodata); + } + + . = 0x9740000; + effect_sbin_section : + ALIGN(4) + { + data/effect_sbin.o(.rodata); + } + + . = 0x9890000; + ground_sbin_section : + ALIGN(4) + { + data/ground_sbin.o(.rodata); + } + + . = 0x9E60000; + ornament_sbin_section : + ALIGN(4) + { + data/ornament_sbin.o(.rodata); + } + + sound_data : + ALIGN(4) + { + data/sound_data.o(.rodata); + } + /* DWARF 2 sections */ .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } |