pokeemerald/ld_script.txt

528 lines
17 KiB
Plaintext
Raw Normal View History

ENTRY(Start)
2016-09-03 08:11:14 +00:00
gNumMusicPlayers = 4;
2016-11-02 02:48:22 +00:00
gMaxLines = 0;
2016-09-03 08:11:14 +00:00
SECTIONS {
2016-11-01 18:35:16 +00:00
. = 0x2000000;
2016-09-03 08:11:14 +00:00
ewram (NOLOAD) :
ALIGN(4)
{
2017-09-05 11:01:24 +00:00
gHeap = .;
. = 0x1C000;
2016-11-01 18:35:16 +00:00
<EWRAM>
2017-09-05 11:01:24 +00:00
. = 0x40000;
}
2016-09-03 08:11:14 +00:00
. = 0x3000000;
iwram (NOLOAD) :
ALIGN(4)
{
2016-11-01 18:35:16 +00:00
/* .bss starts at 0x3000000 */
<BSS>
/* .bss.code starts at 0x3001AA8 */
2016-11-02 02:48:22 +00:00
src/m4a_2.o(.bss.code);
2016-11-01 18:35:16 +00:00
/* COMMON starts at 0x30022A8 */
<COMMON>
. = 0x8000;
2016-09-03 08:11:14 +00:00
}
. = 0x8000000;
2016-09-03 08:11:14 +00:00
.text :
ALIGN(4)
{
asm/crt0.o(.text);
2017-02-04 00:44:06 +00:00
src/main.o(.text);
2016-09-03 08:11:14 +00:00
src/malloc.o(.text);
src/dma3_manager.o(.text);
2016-09-03 08:11:14 +00:00
src/gpu_regs.o(.text);
2017-09-05 02:18:52 +00:00
src/bg.o(.text);
2016-11-01 17:08:48 +00:00
asm/blit.o(.text);
2017-03-30 00:02:15 +00:00
src/window.o(.text);
2017-03-07 13:44:41 +00:00
src/text.o(.text);
src/sprite.o(.text);
2017-01-14 19:53:20 +00:00
src/string_util.o(.text);
2016-11-01 17:08:48 +00:00
asm/link.o(.text);
2017-09-02 21:28:44 +00:00
src/rtc.o(.text);
2016-09-03 08:11:14 +00:00
asm/main_menu.o(.text);
2016-11-01 17:08:48 +00:00
asm/rom3.o(.text);
2017-09-02 17:55:39 +00:00
src/decompress.o(.text);
2017-09-17 01:32:37 +00:00
asm/battle_1.o(.text);
asm/battle_2.o(.text);
2017-09-17 12:10:32 +00:00
src/battle_3.o(.text);
2017-09-28 15:38:07 +00:00
src/battle_script_commands.o(.text);
2017-09-01 21:40:13 +00:00
asm/battle_5.o(.text);
asm/battle_controller_player.o(.text);
asm/battle_7.o(.text);
asm/battle_controller_opponent.o(.text);
asm/battle_9.o(.text);
asm/battle_controller_linkopponent.o(.text);
2017-09-06 15:19:08 +00:00
src/pokemon_1.o(.text);
2016-11-01 17:08:48 +00:00
asm/pokemon_1.o(.text);
2017-09-04 19:43:13 +00:00
src/calculate_base_damage.o(.text);
2017-09-06 16:34:18 +00:00
src/pokemon_2.o(.text);
asm/pokemon_item_effect.o(.text);
2017-09-11 09:35:41 +00:00
src/pokemon_3.o(.text);
2017-01-16 01:14:00 +00:00
asm/pokemon_3.o(.text);
2017-08-31 14:48:24 +00:00
src/trig.o(.text);
2017-02-03 00:30:08 +00:00
src/rng.o(.text);
2017-09-13 10:58:57 +00:00
src/util.o(.text);
src/blend_palette.o(.text);
2016-11-01 17:08:48 +00:00
asm/daycare.o(.text);
src/egg_hatch.o(.text);
2017-09-17 01:32:37 +00:00
asm/battle_interface.o(.text);
2017-09-17 01:35:02 +00:00
asm/smokescreen.o(.text);
asm/pokeball.o(.text);
2017-09-04 16:26:39 +00:00
src/load_save.o(.text);
2016-11-01 17:08:48 +00:00
asm/load_save.o(.text);
asm/trade.o(.text);
asm/berry_blender.o(.text);
2017-08-31 14:48:24 +00:00
src/play_time.o(.text);
2017-09-03 20:50:17 +00:00
src/new_game.o(.text);
2016-11-01 17:08:48 +00:00
asm/rom4.o(.text);
asm/fieldmap.o(.text);
2017-09-29 17:03:50 +00:00
src/metatile_behavior.o(.text);
2016-11-01 17:08:48 +00:00
asm/field_camera.o(.text);
asm/field_door.o(.text);
asm/field_player_avatar.o(.text);
2017-09-06 12:46:47 +00:00
src/field_map_obj.o(.text);
2016-11-01 17:08:48 +00:00
asm/field_ground_effect.o(.text);
asm/map_obj_8097404.o(.text);
asm/field_message_box.o(.text);
asm/map_obj_lock.o(.text);
2017-09-01 17:01:58 +00:00
src/text_window.o(.text);
2017-09-10 21:05:23 +00:00
src/script.o(.text);
2016-11-01 17:08:48 +00:00
asm/scrcmd.o(.text);
2017-01-16 01:14:00 +00:00
asm/field_control_avatar.o(.text);
2017-09-02 19:43:53 +00:00
src/event_data.o(.text);
2017-01-16 01:14:00 +00:00
asm/coord_event_weather.o(.text);
asm/field_tasks.o(.text);
asm/clock.o(.text);
2016-11-01 17:08:48 +00:00
asm/reset_rtc_screen.o(.text);
2017-09-05 11:01:24 +00:00
src/start_menu.o(.text);
2016-11-01 17:08:48 +00:00
asm/start_menu.o(.text);
2017-10-02 01:58:47 +00:00
src/tileset_anims.o(.text);
src/palette.o(.text);
2017-09-02 14:03:53 +00:00
src/sound.o(.text);
2017-01-16 01:14:00 +00:00
asm/battle_anim.o(.text);
asm/rom_80A5C6C.o(.text);
2016-10-31 08:14:22 +00:00
src/task.o(.text);
asm/reshow_battle_screen.o(.text);
2017-09-05 11:01:24 +00:00
asm/battle_anim_80A9C70.o(.text);
2016-11-01 17:08:48 +00:00
asm/title_screen.o(.text);
2017-09-17 01:32:37 +00:00
asm/field_screen.o(.text);
2016-11-01 17:08:48 +00:00
asm/battle_setup.o(.text);
asm/cable_club.o(.text);
asm/trainer_see.o(.text);
asm/fldeff_emotion.o(.text);
asm/wild_encounter.o(.text);
asm/field_effect.o(.text);
2017-01-16 01:14:00 +00:00
asm/unknown_task.o(.text);
2016-11-01 17:08:48 +00:00
asm/option_menu.o(.text);
asm/pokedex.o(.text);
asm/trainer_card.o(.text);
2017-09-17 01:32:37 +00:00
asm/pokemon_storage_system.o(.text);
2017-09-17 01:35:02 +00:00
asm/pokemon_icon.o(.text);
asm/script_movement.o(.text);
asm/fldeff_cut.o(.text);
asm/mail_data.o(.text);
asm/map_name_popup.o(.text);
asm/item_menu_icons.o(.text);
asm/battle_anim_80D51AC.o(.text);
2017-09-02 22:47:51 +00:00
src/item.o(.text);
2016-11-01 17:08:48 +00:00
asm/item.o(.text);
asm/contest.o(.text);
asm/shop.o(.text);
2017-09-12 16:47:27 +00:00
src/berry.o(.text);
2016-11-01 17:08:48 +00:00
asm/script_menu.o(.text);
asm/naming_screen.o(.text);
2017-09-08 22:45:25 +00:00
src/money.o(.text);
2016-11-01 17:08:48 +00:00
asm/contest_effect.o(.text);
asm/record_mixing.o(.text);
asm/secret_base.o(.text);
asm/tv.o(.text);
asm/contest_link_80F57C4.o(.text);
asm/script_pokemon_util_80F87D8.o(.text);
asm/field_poison.o(.text);
2017-09-08 20:23:14 +00:00
src/pokemon_size_record.o(.text);
2016-11-01 17:08:48 +00:00
asm/fldeff_80F9BCC.o(.text);
2017-09-23 02:45:47 +00:00
src/field_special_scene.o(.text);
2016-11-01 17:08:48 +00:00
asm/rotating_gate.o(.text);
2017-09-09 13:45:50 +00:00
src/safari_zone.o(.text);
2016-11-01 17:08:48 +00:00
asm/contest_link_80FC4F4.o(.text);
asm/item_use.o(.text);
asm/battle_anim_80FE840.o(.text);
asm/bike.o(.text);
asm/easy_chat.o(.text);
asm/mon_markings.o(.text);
asm/mauville_old_man.o(.text);
asm/mail.o(.text);
asm/menu_helpers.o(.text);
asm/dewford_trend.o(.text);
asm/heal_location.o(.text);
asm/region_map.o(.text);
asm/cute_sketch.o(.text);
asm/decoration.o(.text);
asm/slot_machine.o(.text);
asm/contest_painting.o(.text);
2017-09-28 15:38:07 +00:00
src/battle_ai_script_commands.o(.text);
2016-11-01 17:08:48 +00:00
asm/trader.o(.text);
asm/starter_choose.o(.text);
asm/wallclock.o(.text);
asm/rom6.o(.text);
asm/battle_records.o(.text);
asm/pokedex_area_screen.o(.text);
asm/evolution_scene.o(.text);
asm/roulette.o(.text);
asm/pokedex_cry_screen.o(.text);
2017-09-09 12:24:18 +00:00
src/coins.o(.text);
2016-11-01 17:08:48 +00:00
asm/coins.o(.text);
asm/landmark.o(.text);
asm/fldeff_strength.o(.text);
asm/battle_transition.o(.text);
2017-09-02 18:56:53 +00:00
asm/battle_controller_linkpartner.o(.text);
2016-11-01 17:08:48 +00:00
asm/battle_message.o(.text);
asm/cable_car.o(.text);
2017-09-17 01:32:37 +00:00
asm/math_util.o(.text);
2016-11-01 17:08:48 +00:00
asm/roulette_util.o(.text);
asm/cable_car_util.o(.text);
2017-09-03 12:13:01 +00:00
src/save.o(.text);
2016-11-01 17:08:48 +00:00
asm/mystery_event_script.o(.text);
asm/field_effect_helpers.o(.text);
asm/contest_ai.o(.text);
2017-09-05 15:04:11 +00:00
asm/battle_anim_sound_tasks.o(.text);
2017-09-04 10:22:04 +00:00
asm/battle_controller_safari.o(.text);
asm/fldeff_sweetscent.o(.text);
2017-09-17 01:32:37 +00:00
asm/battle_anim_815A0D4.o(.text);
2017-09-17 01:35:02 +00:00
asm/learn_move.o(.text);
asm/fldeff_softboiled.o(.text);
2017-09-04 11:01:57 +00:00
asm/decoration_inventory.o(.text);
2017-09-28 18:52:36 +00:00
src/roamer.o(.text);
2017-09-17 01:32:37 +00:00
asm/battle_tower.o(.text);
2017-09-17 01:35:02 +00:00
asm/use_pokeblock.o(.text);
2017-09-02 18:56:53 +00:00
asm/battle_controller_wally.o(.text);
2016-11-01 17:08:48 +00:00
asm/player_pc.o(.text);
asm/intro.o(.text);
2017-09-18 03:42:44 +00:00
src/reset_save_heap.o(.text);
2017-01-16 01:14:00 +00:00
asm/field_region_map.o(.text);
asm/battle_anim_8170478.o(.text);
asm/hall_of_fame.o(.text);
asm/credits.o(.text);
2017-09-08 16:48:55 +00:00
src/lottery_corner.o(.text);
2016-11-01 17:08:48 +00:00
asm/diploma.o(.text);
asm/berry_tag_screen.o(.text);
asm/mystery_event_menu.o(.text);
asm/save_failed_screen.o(.text);
2017-01-16 01:14:00 +00:00
asm/braille_puzzles.o(.text);
asm/pokeblock_feed.o(.text);
2016-11-01 17:08:48 +00:00
asm/clear_save_data_screen.o(.text);
2017-01-16 01:14:00 +00:00
asm/intro_credits_graphics.o(.text);
asm/evolution_graphics.o(.text);
asm/bard_music.o(.text);
asm/fldeff_teleport.o(.text);
2017-09-17 01:32:37 +00:00
asm/battle_link_817C95C.o(.text);
2017-09-04 11:23:40 +00:00
asm/pokemon_animation.o(.text);
asm/recorded_battle.o(.text);
2017-09-03 16:58:40 +00:00
asm/battle_controller_recorded_opponent.o(.text);
asm/battle_controller_recorded_player.o(.text);
2017-09-18 23:39:20 +00:00
src/battle_dome_cards.o(.text);
2017-09-19 20:17:23 +00:00
src/lilycove_lady.o(.text);
2017-09-17 01:32:37 +00:00
asm/battle_frontier_1.o(.text);
2017-09-17 01:35:02 +00:00
asm/new_menu_helpers.o(.text);
asm/menu.o(.text);
asm/battle_frontier_2.o(.text);
asm/item_menu.o(.text);
asm/list_menu.o(.text);
asm/menu_indicators.o(.text);
asm/unk_text_util.o(.text);
asm/save_location.o(.text);
asm/item_icon.o(.text);
asm/party_menu.o(.text);
asm/battle_tent.o(.text);
2017-09-22 03:43:13 +00:00
src/unk_text_util_2.o(.text);
2017-01-14 01:40:03 +00:00
src/multiboot.o(.text);
2017-09-17 01:32:37 +00:00
asm/unk_81BAD84.o(.text);
2017-09-02 18:56:53 +00:00
asm/battle_controller_player_partner.o(.text);
2017-09-17 01:32:37 +00:00
asm/fldeff_groundshake.o(.text);
2017-09-17 01:35:02 +00:00
asm/fossil_specials.o(.text);
2017-09-18 12:52:57 +00:00
src/berry_fix_program.o(.text);
2017-09-17 01:35:02 +00:00
asm/pokemon_summary_screen.o(.text);
asm/pokenav.o(.text);
asm/rayquaza_scene.o(.text);
asm/walda_phrase.o(.text);
asm/contest_link_81D9DE4.o(.text);
asm/trainer_rematch.o(.text);
asm/unk_sprite_file.o(.text);
asm/unk_transition.o(.text);
asm/unk_transition_2.o(.text);
asm/international_string_util.o(.text);
2016-09-03 08:11:14 +00:00
} =0
script_data :
ALIGN(4)
{
2016-09-03 17:20:06 +00:00
data/event_scripts.o(script_data);
data/battle_anim_scripts.o(script_data);
data/battle_scripts_1.o(script_data);
data/field_effect_scripts.o(script_data);
data/battle_scripts_2.o(script_data);
data/battle_ai_scripts.o(script_data);
data/contest_ai_scripts.o(script_data);
data/script_funcs.o(script_data);
2016-09-03 08:11:14 +00:00
} =0
lib_text :
ALIGN(4)
{
asm/libgcnmultiboot.o(.text);
2016-11-02 02:48:22 +00:00
asm/m4a_1.o(.text);
src/m4a_2.o(.text);
asm/m4a_3.o(.text);
src/m4a_4.o(.text);
2016-11-01 19:15:48 +00:00
src/agb_flash.o(.text);
src/agb_flash_1m.o(.text);
src/agb_flash_mx.o(.text);
2016-11-02 21:06:41 +00:00
src/siirtc.o(.text);
2016-09-03 08:11:14 +00:00
asm/librfu.o(.text);
asm/libagbsyscall.o(.text);
2016-09-03 11:11:10 +00:00
tools/agbcc/lib/libgcc.a:_call_via_rX.o(.text);
tools/agbcc/lib/libgcc.a:_divdi3.o(.text);
tools/agbcc/lib/libgcc.a:_divsi3.o(.text);
tools/agbcc/lib/libgcc.a:_dvmd_tls.o(.text);
tools/agbcc/lib/libgcc.a:_fixunsdfsi.o(.text);
tools/agbcc/lib/libgcc.a:_fixunssfsi.o(.text);
tools/agbcc/lib/libgcc.a:_modsi3.o(.text);
tools/agbcc/lib/libgcc.a:_muldi3.o(.text);
tools/agbcc/lib/libgcc.a:_udivdi3.o(.text);
tools/agbcc/lib/libgcc.a:_udivsi3.o(.text);
tools/agbcc/lib/libgcc.a:_umodsi3.o(.text);
tools/agbcc/lib/libgcc.a:dp-bit.o(.text);
tools/agbcc/lib/libgcc.a:fp-bit.o(.text);
tools/agbcc/lib/libgcc.a:_lshrdi3.o(.text);
tools/agbcc/lib/libgcc.a:_negdi2.o(.text);
2016-11-01 15:17:40 +00:00
src/libc.o(.text);
2016-09-03 08:11:14 +00:00
} =0
.rodata :
ALIGN(4)
{
2017-02-04 00:44:06 +00:00
src/main.o(.rodata);
2017-09-10 01:52:33 +00:00
src/bg.o(.rodata);
2017-09-01 15:38:28 +00:00
src/window.o(.rodata);
2017-03-28 00:30:49 +00:00
src/text.o(.rodata);
2017-09-02 11:11:19 +00:00
src/sprite.o(.rodata);
data/io_reg.o(.rodata);
2017-01-14 23:17:51 +00:00
src/string_util.o(.rodata);
data/link.o(.rodata);
2017-09-02 21:37:06 +00:00
src/rtc.o(.rodata);
data/data2b.o(.rodata);
2017-09-28 15:38:07 +00:00
src/battle_script_commands.o(.rodata);
2017-09-04 13:05:11 +00:00
data/battle_controller_player.o(.rodata);
data/smokescreen.o(.rodata);
2017-09-04 13:05:11 +00:00
data/battle_controller_opponent.o(.rodata);
data/battle_controller_link_opponent.o(.rodata);
data/data2c.o(.rodata);
2017-08-31 14:48:24 +00:00
src/trig.o(.rodata);
2017-09-13 10:58:57 +00:00
src/util.o(.rodata);
2017-09-25 20:13:32 +00:00
data/daycare.o(.rodata);
2017-09-19 12:27:46 +00:00
src/egg_hatch.o(.rodata);
2017-09-25 19:27:54 +00:00
data/battle_7.o(.rodata);
data/battle_interface.o(.rodata);
data/pokeball.o(.rodata);
data/trade.o(.rodata);
data/berry_blender.o(.rodata);
src/new_game.o(.rodata);
data/rom4.o(.rodata);
data/fieldmap.o(.rodata);
2017-09-29 17:03:50 +00:00
src/metatile_behavior.o(.rodata);
data/rom_8486FEC.o(.rodata);
2017-09-25 19:27:54 +00:00
data/field_door.o(.rodata);
data/field_player_avatar.o(.rodata);
data/field_map_obj.o(.rodata);
2017-09-25 20:09:44 +00:00
data/field_ground_effect.o(.rodata);
data/map_obj_8097404.o(.rodata);
data/text_window.o(.rodata);
data/scrcmd.o(.rodata);
data/coord_event_weather.o(.rodata);
data/field_tasks.o(.rodata);
data/reset_rtc_screen.o(.rodata);
data/start_menu.o(.rodata);
2017-10-02 01:58:47 +00:00
src/tileset_anims.o(.rodata);
src/palette.o(.rodata);
2017-09-25 20:09:44 +00:00
data/fanfares.o(.rodata);
data/battle_anims.o(.rodata);
data/title_screen.o(.rodata);
data/field_screen.o(.rodata);
data/battle_setup.o(.rodata);
data/cable_club.o(.rodata);
data/trainer_see.o(.rodata);
data/fldeff_emotion.o(.rodata);
data/wild_encounter.o(.rodata);
data/field_effect.o(.rodata);
data/option_menu.o(.rodata);
data/pokedex.o(.rodata);
data/trainer_card.o(.rodata);
data/pokemon_storage_system.o(.rodata);
data/pokemon_icon.o(.rodata);
data/fldeff_cut.o(.rodata);
data/map_name_popup.o(.rodata);
data/item_menu_icons.o(.rodata);
data/contest.o(.rodata);
data/shop.o(.rodata);
2017-09-13 09:16:26 +00:00
src/berry.o(.rodata);
2017-09-25 18:47:44 +00:00
data/script_menu.o(.rodata);
2017-09-25 19:03:52 +00:00
data/naming_screen.o(.rodata);
2017-09-28 22:11:42 +00:00
src/money.o(.rodata);
2017-09-25 19:03:52 +00:00
data/contest_effect.o(.rodata);
data/record_mixing.o(.rodata);
data/secret_base.o(.rodata);
data/tv.o(.rodata);
data/contest_link_80F57C4.o(.rodata);
data/script_pokemon_util_80F87D8.o(.rodata);
2017-09-08 20:23:14 +00:00
src/pokemon_size_record.o(.rodata)
2017-09-25 20:09:44 +00:00
data/field_effect_misc.o(.rodata);
2017-09-27 04:48:11 +00:00
data/field_special_scene.o(.rodata);
2017-09-25 15:23:44 +00:00
data/rotating_gate.o(.rodata);
data/item_use.o(.rodata);
data/battle_anim_80FE840.o(.rodata);
data/bike.o(.rodata);
data/easy_chat.o(.rodata);
data/mon_markings.o(.rodata);
data/mauville_old_man.o(.rodata);
data/mail.o(.rodata);
data/menu_helpers.o(.rodata);
data/heal_location.o(.rodata);
data/region_map.o(.rodata);
data/cute_sketch.o(.rodata);
data/decoration.o(.rodata);
data/slot_machine.o(.rodata);
data/contest_painting.o(.rodata);
2017-09-28 15:38:07 +00:00
src/battle_ai_script_commands.o(.rodata);
2017-09-05 07:41:48 +00:00
data/data4.o(.rodata);
2017-09-04 13:05:11 +00:00
data/battle_controller_link_partner.o(.rodata);
2017-01-16 06:38:56 +00:00
data/battle_message.o(.rodata);
data/cable_car.o(.rodata);
data/save.o(.rodata);
data/field_effect_helpers.o(.rodata);
data/contest_ai.o(.rodata);
2017-09-04 13:05:11 +00:00
data/battle_controller_safari.o(.rodata);
2017-09-30 07:11:48 +00:00
data/battle_anim_815A0D4.o(.rodata);
data/learn_move.o(.rodata);
2017-09-28 18:52:36 +00:00
src/roamer.o(.rodata);
2017-09-30 07:22:59 +00:00
data/battle_tower.o(.rodata);
data/use_pokeblock.o(.rodata);
2017-09-04 13:05:11 +00:00
data/battle_controller_wally.o(.rodata);
2017-01-16 06:38:56 +00:00
data/player_pc.o(.rodata);
data/intro.o(.rodata);
data/field_region_map.o(.rodata);
data/battle_anim_8170478.o(.rodata);
data/hall_of_fame.o(.rodata);
data/credits.o(.rodata);
2017-09-08 16:48:55 +00:00
src/lottery_corner.o(.rodata);
2017-01-14 09:54:02 +00:00
data/diploma.o(.rodata);
data/strings.o(.rodata);
data/berry_tag_screen.o(.rodata);
data/mystery_event_menu.o(.rodata);
data/save_failed_screen.o(.rodata);
2017-01-16 06:38:56 +00:00
data/braille_puzzles.o(.rodata);
data/pokeblock_feed.o(.rodata);
data/clear_save_data_screen.o(.rodata);
data/intro_credits_graphics.o(.rodata);
data/evolution_graphics.o(.rodata);
data/bard_music.o(.rodata);
data/data_860A4AC.o(.rodata);
2017-09-04 13:39:20 +00:00
data/battle_controller_recorded_opponent.o(.rodata);
data/battle_controller_recorded_player.o(.rodata);
src/battle_dome_cards.o(.rodata);
2017-09-21 02:01:28 +00:00
src/lilycove_lady.o(.rodata);
2017-09-21 17:28:02 +00:00
data/battle_frontier_1.o(.rodata);
data/new_menu_helpers.o(.rodata);
data/battle_frontier_2.o(.rodata);
data/item_menu.o(.rodata);
data/menu_indicators.o(.rodata);
data/save_location.o(.rodata);
data/item_icon.o(.rodata);
data/party_menu.o(.rodata);
data/battle_tent.o(.rodata);
2017-09-23 01:18:53 +00:00
src/unk_text_util_2.o(.rodata);
2017-09-21 17:28:02 +00:00
data/unk_81BAD84.o(.rodata);
2017-09-04 13:39:20 +00:00
data/battle_controller_player_partner.o(.rodata);
2017-09-21 17:51:32 +00:00
data/fossil_special_fldeff_groundshake.o(.rodata);
2017-09-18 19:10:25 +00:00
src/berry_fix_program.o(.rodata);
2017-09-21 17:51:32 +00:00
data/pokemon_summary_screen.o(.rodata);
data/pokenav.o(.rodata);
data/rayquaza_scene.o(.rodata);
data/walda_phrase.o(.rodata);
data/trainer_rematch.o(.rodata);
data/unk_sprite_file.o(.rodata);
data/unk_transition.o(.rodata);
data/link_strings.o(.rodata);
2017-01-16 06:38:56 +00:00
data/fonts.o(.rodata);
data/mystery_event_msg.o(.rodata);
2016-11-02 02:48:22 +00:00
src/m4a_tables.o(.rodata);
2016-09-03 16:25:58 +00:00
data/sound_data.o(.rodata);
2016-09-03 08:11:14 +00:00
} =0
2016-09-03 11:11:10 +00:00
lib_rodata :
2017-07-29 00:53:49 +00:00
SUBALIGN(4)
2016-09-03 11:11:10 +00:00
{
2016-11-01 19:15:48 +00:00
src/agb_flash.o(.rodata);
src/agb_flash_1m.o(.rodata);
src/agb_flash_mx.o(.rodata);
src/agb_flash_le.o(.rodata);
2016-11-02 21:06:41 +00:00
src/siirtc.o(.rodata);
2016-09-03 11:29:59 +00:00
data/librfu_rodata.o(.rodata);
2016-09-03 11:11:10 +00:00
tools/agbcc/lib/libgcc.a:_divdi3.o(.rodata);
tools/agbcc/lib/libgcc.a:_udivdi3.o(.rodata);
} =0
other_data :
ALIGN(4)
{
data/unknown_serial_data.o(.rodata);
data/multiboot_berry_glitch_fix.o(.rodata);
data/multiboot_pokemon_colosseum.o(.rodata);
} =0
2016-09-03 10:03:50 +00:00
gap1 :
{
gap1_start = ABSOLUTE(.);
BYTE(0x00)
. = 0x8B00000 - gap1_start;
} =0
anim_mon_front_pic_data :
ALIGN(4)
{
data/anim_mon_front_pics.o(anim_mon_front_pic_data);
} =0
gap2 :
{
gap2_start = ABSOLUTE(.);
BYTE(0x00)
. = 0x8C00000 - gap2_start;
} =0
gfx_data :
ALIGN(4)
{
data/graphics.o(gfx_data);
} =0
2016-09-03 08:11:14 +00:00
/* Discard everything not specifically mentioned above. */
/DISCARD/ :
{
*(*);
}
}