diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-01-31 19:07:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 19:07:31 -0600 |
commit | 74daf03fd70e7c71b92390c9133c9dd543bcb28d (patch) | |
tree | 8e73e4ed117b088264afe424beac03b3bb7e9c0b /ld_script.txt | |
parent | 076ff9ce59bf7da841cfd17412196487657a7b44 (diff) |
Main Menu and Scripts (#25)
* label more funcs, dump scripts/text, and decomp main menu
* decomp vram func and dump more data
* add forgotten file
* get rid of goto in UpdateMenu
Diffstat (limited to 'ld_script.txt')
-rwxr-xr-x | ld_script.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld_script.txt b/ld_script.txt index cc185a3..9009910 100755 --- a/ld_script.txt +++ b/ld_script.txt @@ -65,6 +65,7 @@ SECTIONS { src/text.o(.text); . = ALIGN(4); asm/text.o(.text); + src/code_8009804.o(.text); asm/code_8009804.o(.text); src/file_system.o(.text); src/main.o(.text); @@ -93,6 +94,10 @@ SECTIONS { asm/code_8027C84.o(.text); src/wonder_mail.o(.text); asm/wonder_mail.o(.text); + src/wonder_mail_1.o(.text); + asm/credits.o(.text); + src/main_menu.o(.text); + asm/main_menu.o(.text); src/pokemon_mail.o(.text); src/code_803C1B4.o(.text); asm/personality_test.o(.text); @@ -211,6 +216,7 @@ SECTIONS { data/personality_test.o(.rodata); src/personality_test.o(.rodata); data/data_80F4278.o(.rodata); + data/friend_area_dialogue.o(.rodata); src/m4a_tables.o(.rodata); src/agb_flash.o(.rodata); src/agb_flash_1m.o(.rodata); |