2015-10-05 13:03:59 +00:00
|
|
|
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
|
|
|
|
2019-07-10 08:01:15 +00:00
|
|
|
/* Modify the following load addresses as needed to make more room. Alternately, delete both the
|
|
|
|
declarations below and their references further down to get rid of the gaps. */
|
|
|
|
|
|
|
|
__anim_mon_load_address = 0x8b00000;
|
|
|
|
__gfx_load_address = 0x8c00000;
|
|
|
|
|
2015-10-05 13:03:59 +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
|
|
|
|
2018-12-31 16:38:49 +00:00
|
|
|
INCLUDE "sym_ewram.ld"
|
2016-11-01 18:35:16 +00:00
|
|
|
|
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 */
|
2018-12-31 16:38:49 +00:00
|
|
|
INCLUDE "sym_bss.ld"
|
2016-11-01 18:35:16 +00:00
|
|
|
|
|
|
|
/* .bss.code starts at 0x3001AA8 */
|
2019-02-01 09:37:13 +00:00
|
|
|
src/m4a.o(.bss.code);
|
2016-11-01 18:35:16 +00:00
|
|
|
|
|
|
|
/* COMMON starts at 0x30022A8 */
|
2018-12-31 16:38:49 +00:00
|
|
|
INCLUDE "sym_common.ld"
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:sbrkr.o(COMMON);
|
2018-01-07 02:12:42 +00:00
|
|
|
end = .;
|
2016-11-01 18:35:16 +00:00
|
|
|
. = 0x8000;
|
2016-09-03 08:11:14 +00:00
|
|
|
}
|
|
|
|
|
2015-10-05 13:03:59 +00:00
|
|
|
. = 0x8000000;
|
2016-09-03 08:11:14 +00:00
|
|
|
|
|
|
|
.text :
|
|
|
|
ALIGN(4)
|
|
|
|
{
|
2019-08-06 18:08:13 +00:00
|
|
|
src/crt0.o(.text);
|
2017-02-04 00:44:06 +00:00
|
|
|
src/main.o(.text);
|
2019-09-09 01:07:54 +00:00
|
|
|
gflib/malloc.o(.text);
|
|
|
|
gflib/dma3_manager.o(.text);
|
|
|
|
gflib/gpu_regs.o(.text);
|
|
|
|
gflib/bg.o(.text);
|
|
|
|
gflib/blit.o(.text);
|
|
|
|
gflib/window.o(.text);
|
|
|
|
gflib/text.o(.text);
|
|
|
|
gflib/sprite.o(.text);
|
|
|
|
gflib/string_util.o(.text);
|
2017-11-08 01:25:24 +00:00
|
|
|
src/link.o(.text);
|
2020-02-16 18:49:36 +00:00
|
|
|
src/AgbRfu_LinkManager.o(.text);
|
|
|
|
src/link_rfu_3.o(.text);
|
|
|
|
src/link_rfu_2.o(.text);
|
2019-03-24 18:09:46 +00:00
|
|
|
src/union_room.o(.text);
|
2019-03-30 17:14:00 +00:00
|
|
|
src/mystery_gift.o(.text);
|
2019-04-01 16:05:58 +00:00
|
|
|
src/union_room_player_avatar.o(.text);
|
2019-04-01 22:42:57 +00:00
|
|
|
src/union_room_battle.o(.text);
|
2019-03-24 22:20:35 +00:00
|
|
|
src/mevent2.o(.text);
|
2019-03-27 03:41:05 +00:00
|
|
|
src/mevent_801BAAC.o(.text);
|
2019-04-02 12:43:16 +00:00
|
|
|
src/mevent_server.o(.text);
|
2019-04-02 18:02:13 +00:00
|
|
|
src/mevent_client.o(.text);
|
2019-04-02 16:22:39 +00:00
|
|
|
src/mevent_server_helpers.o(.text);
|
2019-03-26 19:11:55 +00:00
|
|
|
src/mevent_news.o(.text);
|
2019-03-27 00:03:46 +00:00
|
|
|
src/union_room_chat.o(.text);
|
2019-03-31 14:05:32 +00:00
|
|
|
src/berry_crush.o(.text);
|
2019-03-24 19:45:09 +00:00
|
|
|
src/berry_powder.o(.text);
|
2019-08-04 19:35:35 +00:00
|
|
|
src/dodrio_berry_picking.o(.text);
|
2019-04-07 18:07:23 +00:00
|
|
|
src/pokemon_jump.o(.text);
|
2020-04-08 21:23:32 +00:00
|
|
|
src/minigame_countdown.o(.text);
|
2017-09-02 21:28:44 +00:00
|
|
|
src/rtc.o(.text);
|
2018-02-07 19:11:08 +00:00
|
|
|
src/main_menu.o(.text);
|
2017-10-13 15:22:50 +00:00
|
|
|
src/battle_controllers.o(.text);
|
2017-09-02 17:55:39 +00:00
|
|
|
src/decompress.o(.text);
|
2020-04-08 20:24:30 +00:00
|
|
|
src/digit_obj_util.o(.text);
|
2017-12-17 19:10:57 +00:00
|
|
|
src/battle_bg.o(.text);
|
2018-01-16 22:15:02 +00:00
|
|
|
src/battle_main.o(.text);
|
2017-10-06 15:06:45 +00:00
|
|
|
src/battle_util.o(.text);
|
2017-09-28 15:38:07 +00:00
|
|
|
src/battle_script_commands.o(.text);
|
2017-11-12 15:39:21 +00:00
|
|
|
src/battle_util2.o(.text);
|
2017-10-21 15:32:35 +00:00
|
|
|
src/battle_controller_player.o(.text);
|
2017-11-04 15:11:13 +00:00
|
|
|
src/battle_gfx_sfx_util.o(.text);
|
2017-10-21 15:32:35 +00:00
|
|
|
src/battle_controller_opponent.o(.text);
|
2017-10-11 10:49:42 +00:00
|
|
|
src/battle_ai_switch_items.o(.text);
|
2017-10-24 13:25:20 +00:00
|
|
|
src/battle_controller_link_opponent.o(.text);
|
2018-02-11 16:35:01 +00:00
|
|
|
src/pokemon.o(.text);
|
2017-08-31 14:48:24 +00:00
|
|
|
src/trig.o(.text);
|
2017-12-05 18:27:33 +00:00
|
|
|
src/random.o(.text);
|
2017-09-13 10:58:57 +00:00
|
|
|
src/util.o(.text);
|
2017-11-14 19:23:25 +00:00
|
|
|
src/daycare.o(.text);
|
2017-09-18 16:36:05 +00:00
|
|
|
src/egg_hatch.o(.text);
|
2017-10-16 16:12:27 +00:00
|
|
|
src/battle_interface.o(.text);
|
2020-02-23 18:18:54 +00:00
|
|
|
src/battle_anim_smokescreen.o(.text);
|
2017-12-02 18:39:07 +00:00
|
|
|
src/pokeball.o(.text);
|
2017-09-04 16:26:39 +00:00
|
|
|
src/load_save.o(.text);
|
2018-12-19 01:29:41 +00:00
|
|
|
src/trade.o(.text);
|
2017-11-04 21:40:36 +00:00
|
|
|
src/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);
|
2018-02-12 14:01:43 +00:00
|
|
|
src/overworld.o(.text);
|
2018-05-09 10:07:56 +00:00
|
|
|
src/fieldmap.o(.text);
|
2017-09-29 17:03:50 +00:00
|
|
|
src/metatile_behavior.o(.text);
|
2018-04-18 12:12:41 +00:00
|
|
|
src/field_camera.o(.text);
|
2018-01-07 23:50:13 +00:00
|
|
|
src/field_door.o(.text);
|
2018-07-19 16:45:35 +00:00
|
|
|
src/field_player_avatar.o(.text);
|
2018-06-11 13:34:19 +00:00
|
|
|
src/event_object_movement.o(.text);
|
2018-01-28 05:22:06 +00:00
|
|
|
src/field_message_box.o(.text);
|
2019-12-06 07:55:30 +00:00
|
|
|
src/event_object_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);
|
2017-10-12 07:06:19 +00:00
|
|
|
src/scrcmd.o(.text);
|
2018-10-17 02:47:08 +00:00
|
|
|
src/field_control_avatar.o(.text);
|
2017-09-02 19:43:53 +00:00
|
|
|
src/event_data.o(.text);
|
2018-01-29 15:46:56 +00:00
|
|
|
src/coord_event_weather.o(.text);
|
2018-05-19 16:02:43 +00:00
|
|
|
src/field_tasks.o(.text);
|
2017-11-24 19:57:00 +00:00
|
|
|
src/clock.o(.text);
|
2018-02-02 18:00:01 +00:00
|
|
|
src/reset_rtc_screen.o(.text);
|
2017-09-05 11:01:24 +00:00
|
|
|
src/start_menu.o(.text);
|
2017-10-02 01:58:47 +00:00
|
|
|
src/tileset_anims.o(.text);
|
2017-03-05 04:43:34 +00:00
|
|
|
src/palette.o(.text);
|
2017-09-02 14:03:53 +00:00
|
|
|
src/sound.o(.text);
|
2017-10-14 14:55:25 +00:00
|
|
|
src/battle_anim.o(.text);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_mons.o(.text);
|
2016-10-31 08:14:22 +00:00
|
|
|
src/task.o(.text);
|
2017-10-09 16:18:40 +00:00
|
|
|
src/reshow_battle_screen.o(.text);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_status_effects.o(.text);
|
2018-02-04 15:11:00 +00:00
|
|
|
src/title_screen.o(.text);
|
2018-12-08 18:05:03 +00:00
|
|
|
src/field_weather.o(.text);
|
|
|
|
src/field_weather_effect.o(.text);
|
2018-12-08 21:05:11 +00:00
|
|
|
src/field_screen_effect.o(.text);
|
2017-11-28 22:02:09 +00:00
|
|
|
src/battle_setup.o(.text);
|
2018-10-11 21:02:58 +00:00
|
|
|
src/cable_club.o(.text);
|
2017-12-01 20:25:13 +00:00
|
|
|
src/trainer_see.o(.text);
|
2017-11-16 19:38:10 +00:00
|
|
|
src/wild_encounter.o(.text);
|
2018-05-10 08:02:33 +00:00
|
|
|
src/field_effect.o(.text);
|
2018-01-29 16:47:12 +00:00
|
|
|
src/scanline_effect.o(.text);
|
2018-01-16 17:59:06 +00:00
|
|
|
src/option_menu.o(.text);
|
2017-12-21 21:56:20 +00:00
|
|
|
src/pokedex.o(.text);
|
2019-01-09 02:51:19 +00:00
|
|
|
src/trainer_card.o(.text);
|
2019-01-20 17:24:35 +00:00
|
|
|
src/frontier_pass.o(.text);
|
2017-11-11 13:45:08 +00:00
|
|
|
src/pokemon_storage_system.o(.text);
|
2017-12-22 18:16:15 +00:00
|
|
|
src/pokemon_icon.o(.text);
|
2018-04-10 09:25:25 +00:00
|
|
|
src/script_movement.o(.text);
|
2018-06-16 12:04:29 +00:00
|
|
|
src/fldeff_cut.o(.text);
|
2017-12-03 18:19:11 +00:00
|
|
|
src/mail_data.o(.text);
|
2018-04-09 07:22:28 +00:00
|
|
|
src/map_name_popup.o(.text);
|
2018-03-04 17:41:07 +00:00
|
|
|
src/item_menu_icons.o(.text);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_mon_movement.o(.text);
|
2017-09-02 22:47:51 +00:00
|
|
|
src/item.o(.text);
|
2018-05-01 23:47:11 +00:00
|
|
|
src/contest.o(.text);
|
2018-09-01 22:15:35 +00:00
|
|
|
src/shop.o(.text);
|
2018-10-18 17:05:02 +00:00
|
|
|
src/fldeff_escalator.o(.text);
|
2017-09-12 16:47:27 +00:00
|
|
|
src/berry.o(.text);
|
2018-11-01 04:03:41 +00:00
|
|
|
src/script_menu.o(.text);
|
2018-01-24 03:30:13 +00:00
|
|
|
src/naming_screen.o(.text);
|
2017-09-08 22:45:25 +00:00
|
|
|
src/money.o(.text);
|
2018-08-12 21:20:17 +00:00
|
|
|
src/contest_effect.o(.text);
|
2017-11-04 00:59:29 +00:00
|
|
|
src/record_mixing.o(.text);
|
2017-10-23 22:35:06 +00:00
|
|
|
src/secret_base.o(.text);
|
2017-10-13 15:09:36 +00:00
|
|
|
src/tv.o(.text);
|
2019-01-04 02:28:42 +00:00
|
|
|
src/contest_link_80F57C4.o(.text);
|
2018-11-25 21:32:22 +00:00
|
|
|
src/script_pokemon_util_80F87D8.o(.text);
|
2017-11-23 01:10:35 +00:00
|
|
|
src/field_poison.o(.text);
|
2017-09-08 20:23:14 +00:00
|
|
|
src/pokemon_size_record.o(.text);
|
2018-12-20 03:19:54 +00:00
|
|
|
src/fldeff_misc.o(.text);
|
2017-09-23 02:45:47 +00:00
|
|
|
src/field_special_scene.o(.text);
|
2018-04-18 08:39:50 +00:00
|
|
|
src/rotating_gate.o(.text);
|
2017-09-09 13:45:50 +00:00
|
|
|
src/safari_zone.o(.text);
|
2019-01-03 23:31:12 +00:00
|
|
|
src/contest_link_80FC4F4.o(.text);
|
2018-01-28 03:58:44 +00:00
|
|
|
src/item_use.o(.text);
|
2018-12-16 17:35:10 +00:00
|
|
|
src/battle_anim_effects_1.o(.text);
|
2018-12-18 03:56:34 +00:00
|
|
|
src/battle_anim_effects_2.o(.text);
|
2020-02-23 18:18:54 +00:00
|
|
|
src/battle_anim_water.o(.text);
|
|
|
|
src/battle_anim_fire.o(.text);
|
|
|
|
src/battle_anim_electric.o(.text);
|
|
|
|
src/battle_anim_ice.o(.text);
|
|
|
|
src/battle_anim_fight.o(.text);
|
|
|
|
src/battle_anim_poison.o(.text);
|
|
|
|
src/battle_anim_flying.o(.text);
|
|
|
|
src/battle_anim_psychic.o(.text);
|
|
|
|
src/battle_anim_bug.o(.text);
|
|
|
|
src/battle_anim_rock.o(.text);
|
|
|
|
src/battle_anim_ghost.o(.text);
|
|
|
|
src/battle_anim_dragon.o(.text);
|
|
|
|
src/battle_anim_dark.o(.text);
|
|
|
|
src/battle_anim_ground.o(.text);
|
|
|
|
src/battle_anim_normal.o(.text);
|
2018-11-19 15:28:55 +00:00
|
|
|
src/battle_anim_utility_funcs.o(.text);
|
2018-12-13 05:18:25 +00:00
|
|
|
src/battle_intro.o(.text);
|
2017-12-21 16:46:03 +00:00
|
|
|
src/bike.o(.text);
|
2017-09-25 12:53:25 +00:00
|
|
|
src/easy_chat.o(.text);
|
2018-04-17 08:54:39 +00:00
|
|
|
src/mon_markings.o(.text);
|
2018-05-02 15:31:58 +00:00
|
|
|
src/mauville_old_man.o(.text);
|
2017-10-12 19:59:43 +00:00
|
|
|
src/mail.o(.text);
|
2018-05-14 21:03:40 +00:00
|
|
|
src/menu_helpers.o(.text);
|
2018-04-16 10:52:13 +00:00
|
|
|
src/dewford_trend.o(.text);
|
2017-10-29 00:43:33 +00:00
|
|
|
src/heal_location.o(.text);
|
2017-10-29 23:33:53 +00:00
|
|
|
src/region_map.o(.text);
|
2019-11-10 22:29:52 +00:00
|
|
|
src/image_processing_effects.o(.text);
|
2017-10-22 22:55:07 +00:00
|
|
|
src/decoration.o(.text);
|
2018-08-11 15:57:20 +00:00
|
|
|
src/slot_machine.o(.text);
|
2018-11-19 16:16:01 +00:00
|
|
|
src/contest_painting.o(.text);
|
2017-09-28 15:38:07 +00:00
|
|
|
src/battle_ai_script_commands.o(.text);
|
2018-05-01 19:19:24 +00:00
|
|
|
src/trader.o(.text);
|
2017-11-08 17:05:47 +00:00
|
|
|
src/starter_choose.o(.text);
|
2017-11-24 23:00:26 +00:00
|
|
|
src/wallclock.o(.text);
|
2018-12-24 20:59:05 +00:00
|
|
|
src/fldeff_rocksmash.o(.text);
|
|
|
|
src/fldeff_dig.o(.text);
|
2017-12-10 18:02:51 +00:00
|
|
|
src/pokeblock.o(.text);
|
2018-03-01 03:41:26 +00:00
|
|
|
src/fldeff_flash.o(.text);
|
2018-10-21 00:53:41 +00:00
|
|
|
src/post_battle_event_funcs.o(.text);
|
2018-01-29 14:55:34 +00:00
|
|
|
src/time_events.o(.text);
|
2018-02-12 10:12:15 +00:00
|
|
|
src/birch_pc.o(.text);
|
2018-01-21 19:45:43 +00:00
|
|
|
src/hof_pc.o(.text);
|
2018-08-08 08:37:12 +00:00
|
|
|
src/field_specials.o(.text);
|
2018-05-01 10:38:55 +00:00
|
|
|
src/battle_records.o(.text);
|
2018-11-30 16:41:03 +00:00
|
|
|
src/pokedex_area_screen.o(.text);
|
2017-10-27 16:52:21 +00:00
|
|
|
src/evolution_scene.o(.text);
|
2018-12-31 22:09:45 +00:00
|
|
|
src/roulette.o(.text);
|
2018-11-28 16:14:32 +00:00
|
|
|
src/pokedex_cry_screen.o(.text);
|
2017-09-09 12:24:18 +00:00
|
|
|
src/coins.o(.text);
|
2017-12-27 03:20:29 +00:00
|
|
|
src/landmark.o(.text);
|
2018-02-13 17:38:54 +00:00
|
|
|
src/fldeff_strength.o(.text);
|
2018-01-01 16:41:34 +00:00
|
|
|
src/battle_transition.o(.text);
|
2017-10-23 12:24:54 +00:00
|
|
|
src/battle_controller_link_partner.o(.text);
|
2017-10-07 13:15:47 +00:00
|
|
|
src/battle_message.o(.text);
|
2018-12-09 19:41:52 +00:00
|
|
|
src/cable_car.o(.text);
|
2017-10-28 19:58:07 +00:00
|
|
|
src/math_util.o(.text);
|
2018-12-08 17:56:59 +00:00
|
|
|
src/roulette_util.o(.text);
|
2018-09-15 11:50:23 +00:00
|
|
|
src/rom_81520A8.o(.text);
|
2017-09-03 12:13:01 +00:00
|
|
|
src/save.o(.text);
|
2018-01-21 11:36:11 +00:00
|
|
|
src/mystery_event_script.o(.text);
|
2018-10-09 21:32:39 +00:00
|
|
|
src/field_effect_helpers.o(.text);
|
2018-08-15 09:50:18 +00:00
|
|
|
src/contest_ai.o(.text);
|
2018-04-18 14:03:15 +00:00
|
|
|
src/battle_anim_sound_tasks.o(.text);
|
2017-10-22 18:38:23 +00:00
|
|
|
src/battle_controller_safari.o(.text);
|
2018-02-14 11:54:31 +00:00
|
|
|
src/fldeff_sweetscent.o(.text);
|
2018-12-19 01:03:26 +00:00
|
|
|
src/battle_anim_effects_3.o(.text);
|
2019-03-05 01:56:39 +00:00
|
|
|
src/move_relearner.o(.text);
|
2018-02-15 09:59:26 +00:00
|
|
|
src/fldeff_softboiled.o(.text);
|
2017-10-22 22:55:07 +00:00
|
|
|
src/decoration_inventory.o(.text);
|
2017-09-28 18:52:36 +00:00
|
|
|
src/roamer.o(.text);
|
2018-08-26 15:54:58 +00:00
|
|
|
src/battle_tower.o(.text);
|
2017-12-04 22:09:44 +00:00
|
|
|
src/use_pokeblock.o(.text);
|
2017-10-21 15:32:35 +00:00
|
|
|
src/battle_controller_wally.o(.text);
|
2018-03-12 08:26:20 +00:00
|
|
|
src/player_pc.o(.text);
|
2018-02-15 22:54:34 +00:00
|
|
|
src/intro.o(.text);
|
2017-09-18 03:42:44 +00:00
|
|
|
src/reset_save_heap.o(.text);
|
2017-10-29 14:38:25 +00:00
|
|
|
src/field_region_map.o(.text);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_special.o(.text);
|
2017-11-05 11:05:07 +00:00
|
|
|
src/hall_of_fame.o(.text);
|
2018-02-17 09:55:32 +00:00
|
|
|
src/credits.o(.text);
|
2017-09-08 16:48:55 +00:00
|
|
|
src/lottery_corner.o(.text);
|
2017-10-08 02:54:32 +00:00
|
|
|
src/diploma.o(.text);
|
2018-02-02 11:32:12 +00:00
|
|
|
src/berry_tag_screen.o(.text);
|
2018-01-30 22:23:35 +00:00
|
|
|
src/mystery_event_menu.o(.text);
|
2017-10-06 22:33:35 +00:00
|
|
|
src/save_failed_screen.o(.text);
|
2017-10-05 17:02:39 +00:00
|
|
|
src/braille_puzzles.o(.text);
|
2017-12-09 20:23:40 +00:00
|
|
|
src/pokeblock_feed.o(.text);
|
2017-10-21 04:44:17 +00:00
|
|
|
src/clear_save_data_screen.o(.text);
|
2018-02-16 19:08:21 +00:00
|
|
|
src/intro_credits_graphics.o(.text);
|
2017-10-27 12:59:55 +00:00
|
|
|
src/evolution_graphics.o(.text);
|
2017-10-28 13:05:40 +00:00
|
|
|
src/bard_music.o(.text);
|
2017-12-04 01:46:56 +00:00
|
|
|
src/fldeff_teleport.o(.text);
|
2018-02-27 19:40:09 +00:00
|
|
|
src/battle_tv.o(.text);
|
2018-01-22 20:32:50 +00:00
|
|
|
src/pokemon_animation.o(.text);
|
2017-11-12 21:59:36 +00:00
|
|
|
src/recorded_battle.o(.text);
|
2017-10-25 14:24:17 +00:00
|
|
|
src/battle_controller_recorded_opponent.o(.text);
|
2017-10-23 09:24:58 +00:00
|
|
|
src/battle_controller_recorded_player.o(.text);
|
2018-08-18 23:06:10 +00:00
|
|
|
src/trainer_pokemon_sprites.o(.text);
|
2017-09-19 20:17:23 +00:00
|
|
|
src/lilycove_lady.o(.text);
|
2018-08-25 17:59:47 +00:00
|
|
|
src/battle_dome.o(.text);
|
2018-11-12 14:41:19 +00:00
|
|
|
src/battle_palace.o(.text);
|
2019-01-03 01:07:47 +00:00
|
|
|
src/match_call.o(.text);
|
2018-01-27 05:41:52 +00:00
|
|
|
src/menu.o(.text);
|
2018-11-11 15:44:27 +00:00
|
|
|
src/battle_factory_screen.o(.text);
|
2018-10-13 21:23:33 +00:00
|
|
|
src/apprentice.o(.text);
|
2018-10-28 20:11:53 +00:00
|
|
|
src/frontier_util.o(.text);
|
2018-11-11 15:44:27 +00:00
|
|
|
src/battle_arena.o(.text);
|
|
|
|
src/battle_factory.o(.text);
|
2018-11-11 23:46:02 +00:00
|
|
|
src/battle_pike.o(.text);
|
2019-10-15 09:00:08 +00:00
|
|
|
src/rotating_tile_puzzle.o(.text);
|
2018-11-17 14:30:34 +00:00
|
|
|
src/battle_pyramid.o(.text);
|
2018-01-30 18:22:59 +00:00
|
|
|
src/item_menu.o(.text);
|
2018-03-02 15:34:31 +00:00
|
|
|
src/list_menu.o(.text);
|
2018-07-25 04:18:23 +00:00
|
|
|
src/dynamic_placeholder_text_util.o(.text);
|
2017-10-09 02:21:34 +00:00
|
|
|
src/save_location.o(.text);
|
2018-02-02 15:06:20 +00:00
|
|
|
src/item_icon.o(.text);
|
2018-10-12 01:23:39 +00:00
|
|
|
src/party_menu.o(.text);
|
2018-06-17 10:30:09 +00:00
|
|
|
src/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);
|
2020-02-07 22:12:27 +00:00
|
|
|
src/berry_fix_graphics.o(.text);
|
2017-10-22 18:49:21 +00:00
|
|
|
src/battle_controller_player_partner.o(.text);
|
2018-12-25 17:02:41 +00:00
|
|
|
src/mirage_tower.o(.text);
|
2017-09-18 12:52:57 +00:00
|
|
|
src/berry_fix_program.o(.text);
|
2017-09-20 19:07:24 +00:00
|
|
|
src/pokemon_summary_screen.o(.text);
|
2020-02-05 07:47:32 +00:00
|
|
|
src/pokedex_area_region_map.o(.text);
|
2018-08-26 15:54:58 +00:00
|
|
|
src/battle_pyramid_bag.o(.text);
|
2019-02-16 21:00:01 +00:00
|
|
|
src/pokenav.o(.text);
|
2019-04-07 18:40:35 +00:00
|
|
|
src/pokenav_main_menu.o(.text);
|
|
|
|
src/pokenav_match_call_ui.o(.text);
|
2020-02-02 02:19:04 +00:00
|
|
|
src/pokenav_menu_handler_1.o(.text);
|
|
|
|
src/pokenav_menu_handler_2.o(.text);
|
|
|
|
src/pokenav_match_call_1.o(.text);
|
|
|
|
src/pokenav_match_call_2.o(.text);
|
|
|
|
src/pokenav_region_map.o(.text);
|
|
|
|
src/pokenav_conditions_1.o(.text);
|
|
|
|
src/pokenav_conditions_2.o(.text);
|
|
|
|
src/pokenav_conditions_3.o(.text);
|
|
|
|
src/pokenav_ribbons_1.o(.text);
|
|
|
|
src/pokenav_ribbons_2.o(.text);
|
2019-04-07 18:40:35 +00:00
|
|
|
src/pokenav_match_call_data.o(.text);
|
2019-03-08 07:17:01 +00:00
|
|
|
src/menu_specialized.o(.text);
|
2019-03-22 19:16:26 +00:00
|
|
|
src/ereader_helpers.o(.text);
|
|
|
|
src/faraway_island.o(.text);
|
|
|
|
src/ereader_screen.o(.text);
|
2019-01-13 11:12:27 +00:00
|
|
|
src/trainer_hill.o(.text);
|
2017-12-22 23:22:07 +00:00
|
|
|
src/rayquaza_scene.o(.text);
|
2017-10-20 16:52:01 +00:00
|
|
|
src/walda_phrase.o(.text);
|
2019-01-03 17:54:22 +00:00
|
|
|
src/contest_link_81D9DE4.o(.text);
|
2018-02-26 13:23:17 +00:00
|
|
|
src/gym_leader_rematch.o(.text);
|
2018-01-16 22:57:26 +00:00
|
|
|
src/unk_transition.o(.text);
|
2017-10-09 13:40:08 +00:00
|
|
|
src/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);
|
2018-01-21 11:36:11 +00:00
|
|
|
data/mystery_event_script_cmd_table.o(script_data);
|
2016-09-03 08:11:14 +00:00
|
|
|
} =0
|
|
|
|
|
|
|
|
lib_text :
|
|
|
|
ALIGN(4)
|
|
|
|
{
|
2019-08-06 18:08:13 +00:00
|
|
|
src/libgcnmultiboot.o(.text);
|
|
|
|
src/m4a_1.o(.text);
|
2019-02-01 09:37:13 +00:00
|
|
|
src/m4a.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);
|
2017-10-21 19:42:31 +00:00
|
|
|
src/librfu_stwi.o(.text);
|
|
|
|
src/librfu_intr.o(.text);
|
|
|
|
src/librfu_rfu.o(.text);
|
2020-01-15 23:21:54 +00:00
|
|
|
src/librfu_sio32id.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
src/libisagbprn.o(.text);
|
2019-09-09 01:26:46 +00:00
|
|
|
*libagbsyscall.a:ArcTan2.o(.text);
|
|
|
|
*libagbsyscall.a:BgAffineSet.o(.text);
|
|
|
|
*libagbsyscall.a:CpuFastSet.o(.text);
|
|
|
|
*libagbsyscall.a:CpuSet.o(.text);
|
|
|
|
*libagbsyscall.a:Div.o(.text);
|
|
|
|
*libagbsyscall.a:LZ77UnCompVram.o(.text);
|
|
|
|
*libagbsyscall.a:LZ77UnCompWram.o(.text);
|
|
|
|
*libagbsyscall.a:MultiBoot.o(.text);
|
|
|
|
*libagbsyscall.a:ObjAffineSet.o(.text);
|
|
|
|
*libagbsyscall.a:RLUnCompVram.o(.text);
|
|
|
|
*libagbsyscall.a:RLUnCompWram.o(.text);
|
|
|
|
*libagbsyscall.a:RegisterRamReset.o(.text);
|
|
|
|
*libagbsyscall.a:SoftReset.o(.text);
|
|
|
|
*libagbsyscall.a:Sqrt.o(.text);
|
|
|
|
*libagbsyscall.a:VBlankIntrWait.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libgcc.a:_call_via_rX.o(.text);
|
|
|
|
*libgcc.a:_divdi3.o(.text);
|
|
|
|
*libgcc.a:_divsi3.o(.text);
|
|
|
|
*libgcc.a:_dvmd_tls.o(.text);
|
|
|
|
*libgcc.a:_fixunsdfsi.o(.text);
|
|
|
|
*libgcc.a:_fixunssfsi.o(.text);
|
|
|
|
*libgcc.a:_modsi3.o(.text);
|
|
|
|
*libgcc.a:_muldi3.o(.text);
|
|
|
|
*libgcc.a:_udivdi3.o(.text);
|
|
|
|
*libgcc.a:_udivsi3.o(.text);
|
|
|
|
*libgcc.a:_umodsi3.o(.text);
|
|
|
|
*libgcc.a:dp-bit.o(.text);
|
|
|
|
*libgcc.a:fp-bit.o(.text);
|
|
|
|
*libgcc.a:_lshrdi3.o(.text);
|
|
|
|
*libgcc.a:_negdi2.o(.text);
|
|
|
|
*libc.a:memcpy.o(.text);
|
|
|
|
*libc.a:memset.o(.text);
|
|
|
|
*libc.a:strcmp.o(.text);
|
|
|
|
*libc.a:strcpy.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:impure.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:vsprintf.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:vfprintf.o(.text);
|
|
|
|
*libc.a:wsetup.o(.text);
|
|
|
|
*libc.a:dtoa.o(.text);
|
|
|
|
*libc.a:fflush.o(.text);
|
|
|
|
*libc.a:findfp.o(.text);
|
|
|
|
*libc.a:freer.o(.text);
|
|
|
|
*libc.a:mtrim.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:fvwrite.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:fwalk.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:locale.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:makebuf.o(.text);
|
|
|
|
*libc.a:mallocr.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:mbtowc_r.o(.text);
|
|
|
|
*libc.a:memchr.o(.text);
|
|
|
|
*libc.a:memmove.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:mlock.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:mprec.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:s_isinf.o(.text);
|
|
|
|
*libc.a:s_isnan.o(.text);
|
|
|
|
*libc.a:sbrkr.o(.text);
|
|
|
|
*libc.a:stdio.o(.text);
|
|
|
|
*libc.a:strlen.o(.text);
|
|
|
|
*libc.a:syscalls.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:writer.o(.text);
|
|
|
|
*libc.a:callocr.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:closer.o(.text);
|
|
|
|
*libc.a:errno.o(.text);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libc.a:fstatr.o(.text);
|
|
|
|
*libc.a:libcfunc.o(.text);
|
2019-09-03 20:48:12 +00:00
|
|
|
*libc.a:lseekr.o(.text);
|
|
|
|
*libc.a:readr.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);
|
2019-09-09 01:07:54 +00:00
|
|
|
gflib/bg.o(.rodata);
|
|
|
|
gflib/window.o(.rodata);
|
|
|
|
gflib/text.o(.rodata);
|
|
|
|
gflib/sprite.o(.rodata);
|
2017-09-02 11:11:19 +00:00
|
|
|
data/io_reg.o(.rodata);
|
2019-09-09 01:07:54 +00:00
|
|
|
gflib/string_util.o(.rodata);
|
2017-11-08 01:25:24 +00:00
|
|
|
src/link.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/link.o(.rodata.str1.4);
|
2020-02-16 18:49:36 +00:00
|
|
|
src/AgbRfu_LinkManager.o(.rodata);
|
|
|
|
src/link_rfu_3.o(.rodata);
|
|
|
|
src/link_rfu_2.o(.rodata);
|
|
|
|
src/link_rfu_2.o(.rodata.str1.4);
|
2019-03-24 18:09:46 +00:00
|
|
|
src/union_room.o(.rodata);
|
2019-03-30 17:14:00 +00:00
|
|
|
src/mystery_gift.o(.rodata);
|
2019-04-01 16:05:58 +00:00
|
|
|
src/union_room_player_avatar.o(.rodata);
|
2019-04-01 22:42:57 +00:00
|
|
|
src/union_room_battle.o(.rodata);
|
2019-03-24 22:20:35 +00:00
|
|
|
src/mevent2.o(.rodata);
|
2019-03-27 03:41:05 +00:00
|
|
|
src/mevent_801BAAC.o(.rodata);
|
2019-04-02 12:43:16 +00:00
|
|
|
src/mevent_server.o(.rodata);
|
2019-04-02 18:02:13 +00:00
|
|
|
src/mevent_client.o(.rodata);
|
2019-04-02 17:26:06 +00:00
|
|
|
src/mevent_scripts.o(.rodata);
|
2019-03-27 00:03:46 +00:00
|
|
|
src/union_room_chat.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/berry_crush.o(.rodata);
|
2020-02-08 18:54:15 +00:00
|
|
|
src/berry_powder.o(.rodata);
|
2019-03-24 20:42:42 +00:00
|
|
|
src/dodrio_berry_picking.o(.rodata);
|
2019-04-07 18:07:23 +00:00
|
|
|
src/pokemon_jump.o(.rodata);
|
2020-04-08 21:23:32 +00:00
|
|
|
src/minigame_countdown.o(.rodata);
|
2017-09-02 21:37:06 +00:00
|
|
|
src/rtc.o(.rodata);
|
2018-02-14 03:12:02 +00:00
|
|
|
src/main_menu.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/battle_controllers.o(.rodata);
|
2020-04-08 20:24:30 +00:00
|
|
|
src/digit_obj_util.o(.rodata);
|
2019-04-04 21:08:53 +00:00
|
|
|
src/data.o(.rodata);
|
2018-09-11 22:37:47 +00:00
|
|
|
src/battle_bg.o(.rodata);
|
2018-01-16 22:15:02 +00:00
|
|
|
src/battle_main.o(.rodata);
|
2017-10-06 17:09:37 +00:00
|
|
|
src/battle_util.o(.rodata);
|
2017-09-28 15:38:07 +00:00
|
|
|
src/battle_script_commands.o(.rodata);
|
2017-10-21 15:32:35 +00:00
|
|
|
src/battle_controller_player.o(.rodata);
|
2020-02-23 18:18:54 +00:00
|
|
|
src/battle_anim_smokescreen.o(.rodata);
|
2017-10-21 15:32:35 +00:00
|
|
|
src/battle_controller_opponent.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/battle_ai_switch_items.o(.rodata);
|
2017-10-24 13:25:20 +00:00
|
|
|
src/battle_controller_link_opponent.o(.rodata);
|
2018-02-11 16:35:01 +00:00
|
|
|
src/pokemon.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-11-14 19:23:25 +00:00
|
|
|
src/daycare.o(.rodata);
|
2017-09-19 12:27:46 +00:00
|
|
|
src/egg_hatch.o(.rodata);
|
2017-11-04 15:11:13 +00:00
|
|
|
src/battle_gfx_sfx_util.o(.rodata);
|
2017-10-16 16:12:27 +00:00
|
|
|
src/battle_interface.o(.rodata);
|
2017-12-02 20:27:00 +00:00
|
|
|
src/pokeball.o(.rodata);
|
2018-12-31 07:23:27 +00:00
|
|
|
src/trade.o(.rodata);
|
2017-11-04 21:40:36 +00:00
|
|
|
src/berry_blender.o(.rodata);
|
2017-09-25 19:27:54 +00:00
|
|
|
src/new_game.o(.rodata);
|
2018-02-12 14:01:43 +00:00
|
|
|
src/overworld.o(.rodata);
|
2017-11-10 18:39:00 +00:00
|
|
|
data/tilesets.o(.rodata);
|
|
|
|
data/maps.o(.rodata);
|
2018-05-09 10:07:56 +00:00
|
|
|
src/fieldmap.o(.rodata);
|
2017-09-29 17:03:50 +00:00
|
|
|
src/metatile_behavior.o(.rodata);
|
2018-01-07 23:50:13 +00:00
|
|
|
src/field_door.o(.rodata);
|
2018-07-24 12:33:16 +00:00
|
|
|
src/field_player_avatar.o(.rodata);
|
2018-06-11 15:23:14 +00:00
|
|
|
src/event_object_movement.o(.rodata);
|
2018-01-21 12:32:11 +00:00
|
|
|
src/text_window.o(.rodata);
|
2017-10-12 07:06:19 +00:00
|
|
|
src/scrcmd.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/field_control_avatar.o(.rodata);
|
2018-01-29 15:46:56 +00:00
|
|
|
src/coord_event_weather.o(.rodata);
|
2018-05-19 16:02:43 +00:00
|
|
|
src/field_tasks.o(.rodata);
|
2018-02-02 18:00:01 +00:00
|
|
|
src/reset_rtc_screen.o(.rodata);
|
2017-12-23 18:23:55 +00:00
|
|
|
src/start_menu.o(.rodata);
|
2017-10-02 01:58:47 +00:00
|
|
|
src/tileset_anims.o(.rodata);
|
2017-10-01 01:19:29 +00:00
|
|
|
src/palette.o(.rodata);
|
2019-01-19 21:32:25 +00:00
|
|
|
src/sound.o(.rodata);
|
2017-10-15 21:21:59 +00:00
|
|
|
src/battle_anim.o(.rodata);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_mons.o(.rodata);
|
2017-11-10 19:20:27 +00:00
|
|
|
data/map_events.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/reshow_battle_screen.o(.rodata);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_status_effects.o(.rodata);
|
2018-02-04 15:11:00 +00:00
|
|
|
src/title_screen.o(.rodata);
|
2018-12-08 18:05:03 +00:00
|
|
|
src/field_weather.o(.rodata);
|
2018-12-09 11:16:01 +00:00
|
|
|
src/field_weather_effect.o(.rodata);
|
|
|
|
src/field_screen_effect.o(.rodata);
|
2017-11-28 22:02:09 +00:00
|
|
|
src/battle_setup.o(.rodata);
|
2018-10-13 17:41:10 +00:00
|
|
|
src/cable_club.o(.rodata);
|
2017-12-18 18:35:50 +00:00
|
|
|
src/trainer_see.o(.rodata);
|
2018-02-05 21:27:29 +00:00
|
|
|
src/wild_encounter.o(.rodata);
|
2018-05-10 23:36:57 +00:00
|
|
|
src/field_effect.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/scanline_effect.o(.rodata);
|
2018-01-16 17:59:06 +00:00
|
|
|
src/option_menu.o(.rodata);
|
2017-12-21 21:56:20 +00:00
|
|
|
src/pokedex.o(.rodata);
|
2019-01-20 17:24:35 +00:00
|
|
|
src/trainer_card.o(.rodata);
|
2019-01-26 19:56:06 +00:00
|
|
|
src/frontier_pass.o(.rodata);
|
2017-12-22 19:10:51 +00:00
|
|
|
src/pokemon_storage_system.o(.rodata);
|
2017-12-22 18:16:15 +00:00
|
|
|
src/pokemon_icon.o(.rodata);
|
2018-06-16 12:04:29 +00:00
|
|
|
src/fldeff_cut.o(.rodata);
|
2018-04-09 07:22:28 +00:00
|
|
|
src/map_name_popup.o(.rodata);
|
2018-03-04 17:41:07 +00:00
|
|
|
src/item_menu_icons.o(.rodata);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_mon_movement.o(.rodata);
|
2018-12-03 12:37:32 +00:00
|
|
|
src/item.o(.rodata);
|
2019-03-09 02:39:51 +00:00
|
|
|
src/contest.o(.rodata);
|
2018-10-18 17:05:02 +00:00
|
|
|
src/shop.o(.rodata);
|
|
|
|
src/fldeff_escalator.o(.rodata);
|
2017-09-13 09:16:26 +00:00
|
|
|
src/berry.o(.rodata);
|
2018-11-07 02:13:40 +00:00
|
|
|
src/script_menu.o(.rodata);
|
2018-01-24 03:30:13 +00:00
|
|
|
src/naming_screen.o(.rodata);
|
2017-09-28 22:11:42 +00:00
|
|
|
src/money.o(.rodata);
|
2018-08-12 21:20:17 +00:00
|
|
|
src/contest_effect.o(.rodata);
|
2018-05-25 19:00:41 +00:00
|
|
|
src/record_mixing.o(.rodata);
|
2017-10-28 03:21:09 +00:00
|
|
|
src/secret_base.o(.rodata);
|
2017-10-13 15:09:36 +00:00
|
|
|
src/tv.o(.rodata);
|
2019-06-27 10:55:50 +00:00
|
|
|
src/contest_link_80F57C4.o(.rodata);
|
2018-11-25 21:50:54 +00:00
|
|
|
src/script_pokemon_util_80F87D8.o(.rodata);
|
2017-09-08 20:23:14 +00:00
|
|
|
src/pokemon_size_record.o(.rodata)
|
2018-12-20 03:19:54 +00:00
|
|
|
src/fldeff_misc.o(.rodata);
|
2018-09-11 01:04:03 +00:00
|
|
|
src/field_special_scene.o(.rodata);
|
2018-04-18 08:39:50 +00:00
|
|
|
src/rotating_gate.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/contest_link_80FC4F4.o(.rodata);
|
2018-09-11 02:04:19 +00:00
|
|
|
src/item_use.o(.rodata);
|
2018-12-16 17:35:10 +00:00
|
|
|
src/battle_anim_effects_1.o(.rodata);
|
2018-12-18 03:56:34 +00:00
|
|
|
src/battle_anim_effects_2.o(.rodata);
|
2020-02-23 18:18:54 +00:00
|
|
|
src/battle_anim_water.o(.rodata);
|
|
|
|
src/battle_anim_fire.o(.rodata);
|
|
|
|
src/battle_anim_electric.o(.rodata);
|
|
|
|
src/battle_anim_ice.o(.rodata);
|
|
|
|
src/battle_anim_fight.o(.rodata);
|
|
|
|
src/battle_anim_poison.o(.rodata);
|
|
|
|
src/battle_anim_flying.o(.rodata);
|
|
|
|
src/battle_anim_psychic.o(.rodata);
|
|
|
|
src/battle_anim_bug.o(.rodata);
|
|
|
|
src/battle_anim_rock.o(.rodata);
|
|
|
|
src/battle_anim_ghost.o(.rodata);
|
|
|
|
src/battle_anim_dragon.o(.rodata);
|
|
|
|
src/battle_anim_dark.o(.rodata);
|
|
|
|
src/battle_anim_ground.o(.rodata);
|
|
|
|
src/battle_anim_normal.o(.rodata);
|
2018-10-25 21:46:23 +00:00
|
|
|
src/battle_anim_utility_funcs.o(.rodata);
|
|
|
|
src/battle_intro.o(.rodata);
|
2017-12-21 16:46:03 +00:00
|
|
|
src/bike.o(.rodata);
|
2019-02-26 17:17:41 +00:00
|
|
|
src/easy_chat.o(.rodata);
|
2018-04-17 08:54:39 +00:00
|
|
|
src/mon_markings.o(.rodata);
|
2018-05-02 15:31:58 +00:00
|
|
|
src/mauville_old_man.o(.rodata);
|
2017-10-13 04:11:55 +00:00
|
|
|
src/mail.o(.rodata);
|
2018-05-15 18:22:19 +00:00
|
|
|
src/menu_helpers.o(.rodata);
|
2017-10-29 00:43:33 +00:00
|
|
|
src/heal_location.o(.rodata);
|
2017-11-02 01:10:47 +00:00
|
|
|
src/region_map.o(.rodata);
|
2019-11-10 22:29:52 +00:00
|
|
|
src/image_processing_effects.o(.rodata);
|
|
|
|
data/image_processing_effects.o(.rodata);
|
2017-10-22 22:55:07 +00:00
|
|
|
src/decoration.o(.rodata);
|
2018-08-11 15:57:20 +00:00
|
|
|
src/slot_machine.o(.rodata);
|
2018-12-15 19:07:07 +00:00
|
|
|
src/contest_painting.o(.rodata);
|
2017-09-28 15:38:07 +00:00
|
|
|
src/battle_ai_script_commands.o(.rodata);
|
2018-05-01 19:19:24 +00:00
|
|
|
src/trader.o(.rodata);
|
2018-09-05 23:47:29 +00:00
|
|
|
src/starter_choose.o(.rodata);
|
2017-11-25 00:06:01 +00:00
|
|
|
src/wallclock.o(.rodata);
|
2017-12-10 18:02:51 +00:00
|
|
|
src/pokeblock.o(.rodata);
|
2018-02-27 05:03:23 +00:00
|
|
|
src/fldeff_flash.o(.rodata);
|
2018-01-29 14:55:34 +00:00
|
|
|
src/time_events.o(.rodata);
|
2018-08-08 08:37:12 +00:00
|
|
|
src/field_specials.o(.rodata);
|
2018-05-01 10:38:55 +00:00
|
|
|
src/battle_records.o(.rodata);
|
2018-11-30 16:41:03 +00:00
|
|
|
src/pokedex_area_screen.o(.rodata);
|
2017-12-25 04:52:28 +00:00
|
|
|
src/evolution_scene.o(.rodata);
|
2019-01-02 22:40:40 +00:00
|
|
|
src/roulette.o(.rodata);
|
2018-11-28 16:14:32 +00:00
|
|
|
src/pokedex_cry_screen.o(.rodata);
|
2017-12-27 03:20:29 +00:00
|
|
|
src/landmark.o(.rodata);
|
2018-01-01 16:41:34 +00:00
|
|
|
src/battle_transition.o(.rodata);
|
2017-10-23 12:24:54 +00:00
|
|
|
src/battle_controller_link_partner.o(.rodata);
|
2017-10-07 13:15:47 +00:00
|
|
|
src/battle_message.o(.rodata);
|
2018-12-09 19:41:52 +00:00
|
|
|
src/cable_car.o(.rodata);
|
2018-01-31 20:26:57 +00:00
|
|
|
src/save.o(.rodata);
|
2018-10-09 21:32:39 +00:00
|
|
|
src/field_effect_helpers.o(.rodata);
|
2018-08-15 09:50:18 +00:00
|
|
|
src/contest_ai.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/battle_anim_sound_tasks.o(.rodata);
|
2017-10-22 18:38:23 +00:00
|
|
|
src/battle_controller_safari.o(.rodata);
|
2018-12-19 01:03:26 +00:00
|
|
|
src/battle_anim_effects_3.o(.rodata);
|
2019-03-05 01:56:39 +00:00
|
|
|
src/move_relearner.o(.rodata);
|
2017-09-28 18:52:36 +00:00
|
|
|
src/roamer.o(.rodata);
|
2018-10-25 19:27:10 +00:00
|
|
|
src/battle_tower.o(.rodata);
|
2017-12-10 18:02:51 +00:00
|
|
|
src/use_pokeblock.o(.rodata);
|
2017-10-21 15:32:35 +00:00
|
|
|
src/battle_controller_wally.o(.rodata);
|
2018-03-19 10:27:33 +00:00
|
|
|
src/player_pc.o(.rodata);
|
2018-02-16 04:30:39 +00:00
|
|
|
src/intro.o(.rodata);
|
2017-10-29 14:38:25 +00:00
|
|
|
src/field_region_map.o(.rodata);
|
2019-03-31 17:15:39 +00:00
|
|
|
src/battle_anim_special.o(.rodata);
|
2017-11-06 17:41:32 +00:00
|
|
|
src/hall_of_fame.o(.rodata);
|
2018-02-17 09:55:32 +00:00
|
|
|
src/credits.o(.rodata);
|
2017-09-08 16:48:55 +00:00
|
|
|
src/lottery_corner.o(.rodata);
|
2017-10-08 02:54:32 +00:00
|
|
|
src/diploma.o(.rodata);
|
2018-07-25 08:15:36 +00:00
|
|
|
src/strings.o(.rodata);
|
2018-02-02 11:32:12 +00:00
|
|
|
src/berry_tag_screen.o(.rodata);
|
2018-01-30 22:23:35 +00:00
|
|
|
src/mystery_event_menu.o(.rodata);
|
2017-10-07 01:59:47 +00:00
|
|
|
src/save_failed_screen.o(.rodata);
|
2018-09-11 01:17:21 +00:00
|
|
|
src/braille_puzzles.o(.rodata);
|
2017-12-10 14:04:03 +00:00
|
|
|
src/pokeblock_feed.o(.rodata);
|
2017-10-21 04:44:17 +00:00
|
|
|
src/clear_save_data_screen.o(.rodata);
|
2018-02-17 09:55:32 +00:00
|
|
|
src/intro_credits_graphics.o(.rodata);
|
2017-10-27 12:59:55 +00:00
|
|
|
src/evolution_graphics.o(.rodata);
|
2017-10-28 14:26:54 +00:00
|
|
|
src/bard_music.o(.rodata);
|
2018-02-27 19:40:09 +00:00
|
|
|
src/battle_tv.o(.rodata);
|
2018-01-22 20:32:50 +00:00
|
|
|
src/pokemon_animation.o(.rodata);
|
2017-10-25 14:24:17 +00:00
|
|
|
src/battle_controller_recorded_opponent.o(.rodata);
|
2017-10-23 09:24:58 +00:00
|
|
|
src/battle_controller_recorded_player.o(.rodata);
|
2018-08-18 23:06:10 +00:00
|
|
|
src/trainer_pokemon_sprites.o(.rodata);
|
2017-09-21 02:01:28 +00:00
|
|
|
src/lilycove_lady.o(.rodata);
|
2018-08-25 17:59:47 +00:00
|
|
|
src/battle_dome.o(.rodata);
|
2018-11-12 14:41:19 +00:00
|
|
|
src/battle_palace.o(.rodata);
|
2019-01-03 01:07:47 +00:00
|
|
|
src/match_call.o(.rodata);
|
2018-01-27 05:41:52 +00:00
|
|
|
src/menu.o(.rodata);
|
2018-11-11 15:44:27 +00:00
|
|
|
src/battle_factory_screen.o(.rodata);
|
2018-10-14 14:26:13 +00:00
|
|
|
src/apprentice.o(.rodata);
|
2018-10-28 20:11:53 +00:00
|
|
|
src/frontier_util.o(.rodata);
|
2018-11-11 15:44:27 +00:00
|
|
|
src/battle_arena.o(.rodata);
|
|
|
|
src/battle_factory.o(.rodata);
|
2018-11-12 13:35:56 +00:00
|
|
|
src/battle_pike.o(.rodata);
|
2019-10-15 09:00:08 +00:00
|
|
|
src/rotating_tile_puzzle.o(.rodata);
|
2018-11-18 16:52:22 +00:00
|
|
|
src/battle_pyramid.o(.rodata);
|
2018-02-12 18:59:42 +00:00
|
|
|
src/item_menu.o(.rodata);
|
2018-05-19 09:36:31 +00:00
|
|
|
src/list_menu.o(.rodata);
|
2017-10-09 02:21:34 +00:00
|
|
|
src/save_location.o(.rodata);
|
2018-02-02 15:06:20 +00:00
|
|
|
src/item_icon.o(.rodata);
|
2018-12-24 20:59:05 +00:00
|
|
|
src/party_menu.o(.rodata);
|
2018-06-17 10:30:09 +00:00
|
|
|
src/battle_tent.o(.rodata);
|
2017-09-23 01:18:53 +00:00
|
|
|
src/unk_text_util_2.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/multiboot.o(.rodata);
|
2020-02-07 22:12:27 +00:00
|
|
|
src/berry_fix_graphics.o(.rodata);
|
2017-10-22 18:49:21 +00:00
|
|
|
src/battle_controller_player_partner.o(.rodata);
|
2018-12-25 17:02:41 +00:00
|
|
|
src/mirage_tower.o(.rodata);
|
2017-09-18 19:10:25 +00:00
|
|
|
src/berry_fix_program.o(.rodata);
|
2018-08-11 22:03:19 +00:00
|
|
|
src/pokemon_summary_screen.o(.rodata);
|
2020-02-05 07:47:32 +00:00
|
|
|
src/pokedex_area_region_map.o(.rodata);
|
2018-08-30 18:10:57 +00:00
|
|
|
src/battle_pyramid_bag.o(.rodata);
|
2019-02-16 21:00:01 +00:00
|
|
|
src/pokenav.o(.rodata);
|
2019-04-07 18:40:35 +00:00
|
|
|
src/pokenav_main_menu.o(.rodata);
|
|
|
|
src/pokenav_match_call_ui.o(.rodata);
|
2020-02-02 02:19:04 +00:00
|
|
|
src/pokenav_menu_handler_1.o(.rodata);
|
|
|
|
src/pokenav_menu_handler_2.o(.rodata);
|
|
|
|
src/pokenav_match_call_1.o(.rodata);
|
|
|
|
src/pokenav_match_call_2.o(.rodata);
|
|
|
|
src/pokenav_region_map.o(.rodata);
|
|
|
|
src/pokenav_conditions_2.o(.rodata);
|
|
|
|
src/pokenav_conditions_3.o(.rodata);
|
|
|
|
src/pokenav_ribbons_1.o(.rodata);
|
|
|
|
src/pokenav_ribbons_2.o(.rodata);
|
2019-04-07 18:40:35 +00:00
|
|
|
src/pokenav_match_call_data.o(.rodata);
|
2019-03-08 07:17:01 +00:00
|
|
|
src/menu_specialized.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/ereader_helpers.o(.rodata);
|
2019-03-22 19:16:26 +00:00
|
|
|
src/faraway_island.o(.rodata);
|
2019-06-26 12:13:38 +00:00
|
|
|
src/ereader_screen.o(.rodata);
|
2019-01-13 12:15:23 +00:00
|
|
|
src/trainer_hill.o(.rodata);
|
2017-12-22 23:22:07 +00:00
|
|
|
src/rayquaza_scene.o(.rodata);
|
2017-10-20 16:52:01 +00:00
|
|
|
src/walda_phrase.o(.rodata);
|
2018-02-26 13:23:17 +00:00
|
|
|
src/gym_leader_rematch.o(.rodata);
|
2018-01-16 22:57:26 +00:00
|
|
|
src/unk_transition.o(.rodata);
|
2020-02-11 08:11:39 +00:00
|
|
|
src/text_input_strings.o(.rodata);
|
2017-01-16 06:38:56 +00:00
|
|
|
data/fonts.o(.rodata);
|
2018-01-21 11:36:11 +00:00
|
|
|
src/mystery_event_msg.o(.rodata);
|
2019-11-05 23:19:18 +00:00
|
|
|
data/mystery_event.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
|
|
|
|
|
2017-12-21 22:24:11 +00:00
|
|
|
song_data :
|
|
|
|
ALIGN(4)
|
|
|
|
{
|
2018-09-26 03:12:58 +00:00
|
|
|
sound/songs/midi/mus_dummy.o(.rodata);
|
2018-10-10 20:35:12 +00:00
|
|
|
sound/songs/midi/se_kaifuku.o(.rodata);
|
2018-11-20 21:35:23 +00:00
|
|
|
sound/songs/midi/se_pc_login.o(.rodata);
|
2018-11-20 21:39:26 +00:00
|
|
|
sound/songs/midi/se_pc_off.o(.rodata);
|
2018-11-20 21:41:05 +00:00
|
|
|
sound/songs/midi/se_pc_on.o(.rodata);
|
2018-11-20 22:52:47 +00:00
|
|
|
sound/songs/midi/se_select.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_win_open.o(.rodata);
|
|
|
|
sound/songs/se_wall_hit.o(.rodata);
|
2018-10-10 19:26:20 +00:00
|
|
|
sound/songs/midi/se_door.o(.rodata);
|
2018-10-10 20:29:16 +00:00
|
|
|
sound/songs/midi/se_kaidan.o(.rodata);
|
2018-10-10 19:14:49 +00:00
|
|
|
sound/songs/midi/se_dansa.o(.rodata);
|
2018-10-10 20:22:40 +00:00
|
|
|
sound/songs/midi/se_jitensya.o(.rodata);
|
2018-10-10 20:46:11 +00:00
|
|
|
sound/songs/midi/se_kouka_l.o(.rodata);
|
2018-10-10 20:47:27 +00:00
|
|
|
sound/songs/midi/se_kouka_m.o(.rodata);
|
2018-10-10 20:45:01 +00:00
|
|
|
sound/songs/midi/se_kouka_h.o(.rodata);
|
2018-10-10 18:40:41 +00:00
|
|
|
sound/songs/midi/se_bowa2.o(.rodata);
|
2018-11-20 21:54:15 +00:00
|
|
|
sound/songs/midi/se_poke_dead.o(.rodata);
|
2018-11-20 20:19:16 +00:00
|
|
|
sound/songs/midi/se_nigeru.o(.rodata);
|
2018-10-10 20:17:07 +00:00
|
|
|
sound/songs/midi/se_jido_doa.o(.rodata);
|
2018-11-20 20:16:16 +00:00
|
|
|
sound/songs/midi/se_naminori.o(.rodata);
|
2018-10-10 18:27:30 +00:00
|
|
|
sound/songs/midi/se_ban.o(.rodata);
|
2018-11-20 21:43:21 +00:00
|
|
|
sound/songs/midi/se_pin.o(.rodata);
|
2018-10-10 18:36:44 +00:00
|
|
|
sound/songs/midi/se_boo.o(.rodata);
|
2018-10-10 18:38:28 +00:00
|
|
|
sound/songs/midi/se_bowa.o(.rodata);
|
2018-10-10 20:27:34 +00:00
|
|
|
sound/songs/midi/se_jyuni.o(.rodata);
|
2018-10-10 18:24:39 +00:00
|
|
|
sound/songs/midi/se_a.o(.rodata);
|
2018-10-10 20:15:30 +00:00
|
|
|
sound/songs/midi/se_i.o(.rodata);
|
2019-03-24 20:35:59 +00:00
|
|
|
sound/songs/midi/se_u.o(.rodata);
|
2018-10-10 19:28:17 +00:00
|
|
|
sound/songs/midi/se_e.o(.rodata);
|
2018-11-20 20:21:21 +00:00
|
|
|
sound/songs/midi/se_o.o(.rodata);
|
2018-11-20 20:09:29 +00:00
|
|
|
sound/songs/midi/se_n.o(.rodata);
|
2018-11-20 22:50:34 +00:00
|
|
|
sound/songs/midi/se_seikai.o(.rodata);
|
2018-10-10 20:07:23 +00:00
|
|
|
sound/songs/midi/se_hazure.o(.rodata);
|
2018-10-10 19:37:03 +00:00
|
|
|
sound/songs/midi/se_exp.o(.rodata);
|
2018-10-10 20:20:54 +00:00
|
|
|
sound/songs/midi/se_jite_pyoko.o(.rodata);
|
2018-11-20 20:07:05 +00:00
|
|
|
sound/songs/midi/se_mu_pachi.o(.rodata);
|
2019-03-24 20:06:42 +00:00
|
|
|
sound/songs/midi/se_tk_kasya.o(.rodata);
|
2018-10-10 19:45:34 +00:00
|
|
|
sound/songs/midi/se_fu_zaku.o(.rodata);
|
2018-10-10 19:47:30 +00:00
|
|
|
sound/songs/midi/se_fu_zaku2.o(.rodata);
|
2018-10-10 19:50:00 +00:00
|
|
|
sound/songs/midi/se_fu_zuzuzu.o(.rodata);
|
2018-11-20 22:44:09 +00:00
|
|
|
sound/songs/midi/se_ru_gashin.o(.rodata);
|
2018-11-20 22:45:44 +00:00
|
|
|
sound/songs/midi/se_ru_gasyan.o(.rodata);
|
2018-11-20 22:42:11 +00:00
|
|
|
sound/songs/midi/se_ru_bari.o(.rodata);
|
2018-11-20 22:47:42 +00:00
|
|
|
sound/songs/midi/se_ru_hyuu.o(.rodata);
|
2018-10-10 20:37:38 +00:00
|
|
|
sound/songs/midi/se_ki_gasyan.o(.rodata);
|
2019-03-24 20:08:14 +00:00
|
|
|
sound/songs/midi/se_tk_warpin.o(.rodata);
|
2019-03-24 20:09:36 +00:00
|
|
|
sound/songs/midi/se_tk_warpout.o(.rodata);
|
2019-03-24 20:34:00 +00:00
|
|
|
sound/songs/midi/se_tu_saa.o(.rodata);
|
2018-10-10 20:09:46 +00:00
|
|
|
sound/songs/midi/se_hi_turun.o(.rodata);
|
2019-03-24 20:31:14 +00:00
|
|
|
sound/songs/midi/se_track_move.o(.rodata);
|
2019-03-24 20:32:44 +00:00
|
|
|
sound/songs/midi/se_track_stop.o(.rodata);
|
2019-03-24 20:30:05 +00:00
|
|
|
sound/songs/midi/se_track_haiki.o(.rodata);
|
2019-03-24 20:28:26 +00:00
|
|
|
sound/songs/midi/se_track_door.o(.rodata);
|
2018-11-20 20:02:24 +00:00
|
|
|
sound/songs/midi/se_moter.o(.rodata);
|
2018-10-10 19:01:35 +00:00
|
|
|
sound/songs/midi/se_card.o(.rodata);
|
2018-11-20 22:49:15 +00:00
|
|
|
sound/songs/midi/se_save.o(.rodata);
|
2018-10-10 20:39:11 +00:00
|
|
|
sound/songs/midi/se_kon.o(.rodata);
|
2018-10-10 20:40:18 +00:00
|
|
|
sound/songs/midi/se_kon2.o(.rodata);
|
2018-10-10 20:41:40 +00:00
|
|
|
sound/songs/midi/se_kon3.o(.rodata);
|
2018-10-10 20:42:47 +00:00
|
|
|
sound/songs/midi/se_kon4.o(.rodata);
|
2018-11-20 22:55:18 +00:00
|
|
|
sound/songs/midi/se_suikomu.o(.rodata);
|
2018-11-20 20:13:22 +00:00
|
|
|
sound/songs/midi/se_nageru.o(.rodata);
|
2019-03-24 20:19:00 +00:00
|
|
|
sound/songs/midi/se_toy_c.o(.rodata);
|
2019-03-24 20:21:22 +00:00
|
|
|
sound/songs/midi/se_toy_d.o(.rodata);
|
2019-03-24 20:22:22 +00:00
|
|
|
sound/songs/midi/se_toy_e.o(.rodata);
|
2019-03-24 20:24:54 +00:00
|
|
|
sound/songs/midi/se_toy_f.o(.rodata);
|
2019-03-24 20:25:56 +00:00
|
|
|
sound/songs/midi/se_toy_g.o(.rodata);
|
2019-03-24 20:17:00 +00:00
|
|
|
sound/songs/midi/se_toy_a.o(.rodata);
|
2019-03-24 20:18:00 +00:00
|
|
|
sound/songs/midi/se_toy_b.o(.rodata);
|
2019-03-24 20:20:07 +00:00
|
|
|
sound/songs/midi/se_toy_c1.o(.rodata);
|
2018-11-20 19:57:35 +00:00
|
|
|
sound/songs/midi/se_mizu.o(.rodata);
|
2018-10-10 20:05:36 +00:00
|
|
|
sound/songs/midi/se_hashi.o(.rodata);
|
2018-10-10 19:17:05 +00:00
|
|
|
sound/songs/midi/se_daugi.o(.rodata);
|
2018-11-20 21:47:19 +00:00
|
|
|
sound/songs/midi/se_pinpon.o(.rodata);
|
2018-10-10 19:53:49 +00:00
|
|
|
sound/songs/midi/se_fuusen1.o(.rodata);
|
2018-10-10 19:56:10 +00:00
|
|
|
sound/songs/midi/se_fuusen2.o(.rodata);
|
2018-10-10 19:57:41 +00:00
|
|
|
sound/songs/midi/se_fuusen3.o(.rodata);
|
2019-03-24 20:27:06 +00:00
|
|
|
sound/songs/midi/se_toy_kabe.o(.rodata);
|
2019-03-24 20:23:49 +00:00
|
|
|
sound/songs/midi/se_toy_dango.o(.rodata);
|
2018-10-10 19:24:27 +00:00
|
|
|
sound/songs/midi/se_doku.o(.rodata);
|
2018-10-10 19:32:04 +00:00
|
|
|
sound/songs/midi/se_esuka.o(.rodata);
|
2018-11-20 23:00:58 +00:00
|
|
|
sound/songs/midi/se_t_ame.o(.rodata);
|
2018-11-20 23:02:42 +00:00
|
|
|
sound/songs/midi/se_t_ame_e.o(.rodata);
|
2018-11-20 23:09:21 +00:00
|
|
|
sound/songs/midi/se_t_ooame.o(.rodata);
|
2018-11-20 23:10:25 +00:00
|
|
|
sound/songs/midi/se_t_ooame_e.o(.rodata);
|
2018-11-20 23:01:10 +00:00
|
|
|
sound/songs/midi/se_t_koame.o(.rodata);
|
2018-11-20 23:07:28 +00:00
|
|
|
sound/songs/midi/se_t_koame_e.o(.rodata);
|
2018-11-20 23:04:42 +00:00
|
|
|
sound/songs/midi/se_t_kami.o(.rodata);
|
2018-11-20 23:06:03 +00:00
|
|
|
sound/songs/midi/se_t_kami2.o(.rodata);
|
2018-10-10 19:30:17 +00:00
|
|
|
sound/songs/midi/se_elebeta.o(.rodata);
|
2018-10-10 20:11:23 +00:00
|
|
|
sound/songs/midi/se_hinsi.o(.rodata);
|
2018-10-10 19:42:53 +00:00
|
|
|
sound/songs/midi/se_expmax.o(.rodata);
|
2019-03-24 19:54:18 +00:00
|
|
|
sound/songs/midi/se_tamakoro.o(.rodata);
|
2019-03-24 19:57:24 +00:00
|
|
|
sound/songs/midi/se_tamakoro_e.o(.rodata);
|
2018-10-10 18:31:18 +00:00
|
|
|
sound/songs/midi/se_basabasa.o(.rodata);
|
2018-11-20 21:59:59 +00:00
|
|
|
sound/songs/midi/se_regi.o(.rodata);
|
2018-10-10 18:47:02 +00:00
|
|
|
sound/songs/midi/se_c_gaji.o(.rodata);
|
2018-10-10 18:50:48 +00:00
|
|
|
sound/songs/midi/se_c_maku_u.o(.rodata);
|
2018-10-10 18:49:10 +00:00
|
|
|
sound/songs/midi/se_c_maku_d.o(.rodata);
|
2018-10-10 18:53:47 +00:00
|
|
|
sound/songs/midi/se_c_pasi.o(.rodata);
|
2018-10-10 18:59:17 +00:00
|
|
|
sound/songs/midi/se_c_syu.o(.rodata);
|
2018-10-10 18:56:12 +00:00
|
|
|
sound/songs/midi/se_c_pikon.o(.rodata);
|
2018-11-20 21:57:37 +00:00
|
|
|
sound/songs/midi/se_reapoke.o(.rodata);
|
2018-11-20 20:24:06 +00:00
|
|
|
sound/songs/midi/se_op_basyu.o(.rodata);
|
2018-10-10 18:44:13 +00:00
|
|
|
sound/songs/midi/se_bt_start.o(.rodata);
|
2018-10-10 19:21:53 +00:00
|
|
|
sound/songs/midi/se_dendou.o(.rodata);
|
2018-10-10 20:18:51 +00:00
|
|
|
sound/songs/midi/se_jihanki.o(.rodata);
|
2019-03-24 19:49:20 +00:00
|
|
|
sound/songs/midi/se_tama.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_z_scroll.o(.rodata);
|
|
|
|
sound/songs/se_z_page.o(.rodata);
|
2018-11-20 21:51:23 +00:00
|
|
|
sound/songs/midi/se_pn_on.o(.rodata);
|
2018-11-20 21:49:48 +00:00
|
|
|
sound/songs/midi/se_pn_off.o(.rodata);
|
2018-09-26 07:43:43 +00:00
|
|
|
sound/songs/midi/se_z_search.o(.rodata);
|
2019-03-24 19:52:19 +00:00
|
|
|
sound/songs/midi/se_tamago.o(.rodata);
|
2019-03-24 20:05:03 +00:00
|
|
|
sound/songs/midi/se_tb_start.o(.rodata);
|
2019-03-24 20:03:28 +00:00
|
|
|
sound/songs/midi/se_tb_kon.o(.rodata);
|
2019-03-24 19:59:49 +00:00
|
|
|
sound/songs/midi/se_tb_kara.o(.rodata);
|
2018-10-10 18:34:21 +00:00
|
|
|
sound/songs/midi/se_bidoro.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w085.o(.rodata);
|
|
|
|
sound/songs/se_w085b.o(.rodata);
|
|
|
|
sound/songs/se_w231.o(.rodata);
|
|
|
|
sound/songs/se_w171.o(.rodata);
|
|
|
|
sound/songs/se_w233.o(.rodata);
|
|
|
|
sound/songs/se_w233b.o(.rodata);
|
|
|
|
sound/songs/se_w145.o(.rodata);
|
|
|
|
sound/songs/se_w145b.o(.rodata);
|
|
|
|
sound/songs/se_w145c.o(.rodata);
|
|
|
|
sound/songs/se_w240.o(.rodata);
|
2019-03-24 20:55:54 +00:00
|
|
|
sound/songs/midi/se_w015.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w081.o(.rodata);
|
|
|
|
sound/songs/se_w081b.o(.rodata);
|
|
|
|
sound/songs/se_w088.o(.rodata);
|
2019-03-24 20:59:08 +00:00
|
|
|
sound/songs/midi/se_w016.o(.rodata);
|
2019-03-24 21:00:10 +00:00
|
|
|
sound/songs/midi/se_w016b.o(.rodata);
|
2019-03-24 20:40:38 +00:00
|
|
|
sound/songs/midi/se_w003.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w104.o(.rodata);
|
2019-03-24 20:50:00 +00:00
|
|
|
sound/songs/midi/se_w013.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w196.o(.rodata);
|
|
|
|
sound/songs/se_w086.o(.rodata);
|
2019-03-24 20:41:54 +00:00
|
|
|
sound/songs/midi/se_w004.o(.rodata);
|
2019-03-24 21:09:17 +00:00
|
|
|
sound/songs/midi/se_w025.o(.rodata);
|
2019-03-24 21:10:54 +00:00
|
|
|
sound/songs/midi/se_w025b.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w152.o(.rodata);
|
2019-03-24 21:12:04 +00:00
|
|
|
sound/songs/midi/se_w026.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w172.o(.rodata);
|
|
|
|
sound/songs/se_w172b.o(.rodata);
|
|
|
|
sound/songs/se_w053.o(.rodata);
|
2019-03-24 20:46:02 +00:00
|
|
|
sound/songs/midi/se_w007.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w092.o(.rodata);
|
|
|
|
sound/songs/se_w221.o(.rodata);
|
|
|
|
sound/songs/se_w221b.o(.rodata);
|
|
|
|
sound/songs/se_w052.o(.rodata);
|
2019-03-24 21:20:51 +00:00
|
|
|
sound/songs/midi/se_w036.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w059.o(.rodata);
|
|
|
|
sound/songs/se_w059b.o(.rodata);
|
2019-03-24 20:47:25 +00:00
|
|
|
sound/songs/midi/se_w010.o(.rodata);
|
2019-03-24 20:48:38 +00:00
|
|
|
sound/songs/midi/se_w011.o(.rodata);
|
2019-03-24 21:01:50 +00:00
|
|
|
sound/songs/midi/se_w017.o(.rodata);
|
2019-03-24 21:05:20 +00:00
|
|
|
sound/songs/midi/se_w019.o(.rodata);
|
2019-03-24 21:13:25 +00:00
|
|
|
sound/songs/midi/se_w028.o(.rodata);
|
2019-03-24 20:51:41 +00:00
|
|
|
sound/songs/midi/se_w013b.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w044.o(.rodata);
|
2019-03-24 21:16:30 +00:00
|
|
|
sound/songs/midi/se_w029.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w057.o(.rodata);
|
|
|
|
sound/songs/se_w056.o(.rodata);
|
|
|
|
sound/songs/se_w250.o(.rodata);
|
2019-03-24 21:17:26 +00:00
|
|
|
sound/songs/midi/se_w030.o(.rodata);
|
2019-03-24 21:22:23 +00:00
|
|
|
sound/songs/midi/se_w039.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w054.o(.rodata);
|
|
|
|
sound/songs/se_w077.o(.rodata);
|
2019-03-24 21:06:53 +00:00
|
|
|
sound/songs/midi/se_w020.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w082.o(.rodata);
|
|
|
|
sound/songs/se_w047.o(.rodata);
|
|
|
|
sound/songs/se_w195.o(.rodata);
|
2019-03-24 20:44:10 +00:00
|
|
|
sound/songs/midi/se_w006.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w091.o(.rodata);
|
|
|
|
sound/songs/se_w146.o(.rodata);
|
|
|
|
sound/songs/se_w120.o(.rodata);
|
|
|
|
sound/songs/se_w153.o(.rodata);
|
|
|
|
sound/songs/se_w071b.o(.rodata);
|
|
|
|
sound/songs/se_w071.o(.rodata);
|
|
|
|
sound/songs/se_w103.o(.rodata);
|
|
|
|
sound/songs/se_w062.o(.rodata);
|
|
|
|
sound/songs/se_w062b.o(.rodata);
|
|
|
|
sound/songs/se_w048.o(.rodata);
|
|
|
|
sound/songs/se_w187.o(.rodata);
|
|
|
|
sound/songs/se_w118.o(.rodata);
|
|
|
|
sound/songs/se_w155.o(.rodata);
|
|
|
|
sound/songs/se_w122.o(.rodata);
|
|
|
|
sound/songs/se_w060.o(.rodata);
|
|
|
|
sound/songs/se_w185.o(.rodata);
|
2019-03-24 20:54:28 +00:00
|
|
|
sound/songs/midi/se_w014.o(.rodata);
|
2019-03-24 21:23:38 +00:00
|
|
|
sound/songs/midi/se_w043.o(.rodata);
|
2017-12-21 22:24:11 +00:00
|
|
|
sound/songs/se_w207.o(.rodata);
|
|
|
|
sound/songs/se_w207b.o(.rodata);
|
|
|
|
sound/songs/se_w215.o(.rodata);
|
|
|
|
sound/songs/se_w109.o(.rodata);
|
|
|
|
sound/songs/se_w173.o(.rodata);
|
|
|
|
sound/songs/se_w280.o(.rodata);
|
|
|
|
sound/songs/se_w202.o(.rodata);
|
|
|
|
sound/songs/se_w060b.o(.rodata);
|
|
|
|
sound/songs/se_w076.o(.rodata);
|
|
|
|
sound/songs/se_w080.o(.rodata);
|
|
|
|
sound/songs/se_w100.o(.rodata);
|
|
|
|
sound/songs/se_w107.o(.rodata);
|
|
|
|
sound/songs/se_w166.o(.rodata);
|
|
|
|
sound/songs/se_w129.o(.rodata);
|
|
|
|
sound/songs/se_w115.o(.rodata);
|
|
|
|
sound/songs/se_w112.o(.rodata);
|
|
|
|
sound/songs/se_w197.o(.rodata);
|
|
|
|
sound/songs/se_w199.o(.rodata);
|
|
|
|
sound/songs/se_w236.o(.rodata);
|
|
|
|
sound/songs/se_w204.o(.rodata);
|
|
|
|
sound/songs/se_w268.o(.rodata);
|
|
|
|
sound/songs/se_w070.o(.rodata);
|
|
|
|
sound/songs/se_w063.o(.rodata);
|
|
|
|
sound/songs/se_w127.o(.rodata);
|
|
|
|
sound/songs/se_w179.o(.rodata);
|
|
|
|
sound/songs/se_w151.o(.rodata);
|
|
|
|
sound/songs/se_w201.o(.rodata);
|
|
|
|
sound/songs/se_w161.o(.rodata);
|
|
|
|
sound/songs/se_w161b.o(.rodata);
|
|
|
|
sound/songs/se_w227.o(.rodata);
|
|
|
|
sound/songs/se_w227b.o(.rodata);
|
|
|
|
sound/songs/se_w226.o(.rodata);
|
|
|
|
sound/songs/se_w208.o(.rodata);
|
|
|
|
sound/songs/se_w213.o(.rodata);
|
|
|
|
sound/songs/se_w213b.o(.rodata);
|
|
|
|
sound/songs/se_w234.o(.rodata);
|
|
|
|
sound/songs/se_w260.o(.rodata);
|
|
|
|
sound/songs/se_w328.o(.rodata);
|
|
|
|
sound/songs/se_w320.o(.rodata);
|
|
|
|
sound/songs/se_w255.o(.rodata);
|
|
|
|
sound/songs/se_w291.o(.rodata);
|
|
|
|
sound/songs/se_w089.o(.rodata);
|
|
|
|
sound/songs/se_w239.o(.rodata);
|
|
|
|
sound/songs/se_w230.o(.rodata);
|
|
|
|
sound/songs/se_w281.o(.rodata);
|
|
|
|
sound/songs/se_w327.o(.rodata);
|
|
|
|
sound/songs/se_w287.o(.rodata);
|
|
|
|
sound/songs/se_w257.o(.rodata);
|
|
|
|
sound/songs/se_w253.o(.rodata);
|
|
|
|
sound/songs/se_w258.o(.rodata);
|
|
|
|
sound/songs/se_w322.o(.rodata);
|
|
|
|
sound/songs/se_w298.o(.rodata);
|
|
|
|
sound/songs/se_w287b.o(.rodata);
|
|
|
|
sound/songs/se_w114.o(.rodata);
|
|
|
|
sound/songs/se_w063b.o(.rodata);
|
2018-11-20 22:40:34 +00:00
|
|
|
sound/songs/midi/se_rg_w_door.o(.rodata);
|
2018-11-20 22:05:11 +00:00
|
|
|
sound/songs/midi/se_rg_card1.o(.rodata);
|
2018-11-20 22:07:00 +00:00
|
|
|
sound/songs/midi/se_rg_card2.o(.rodata);
|
2018-11-20 22:15:19 +00:00
|
|
|
sound/songs/midi/se_rg_card3.o(.rodata);
|
2018-11-20 22:02:01 +00:00
|
|
|
sound/songs/midi/se_rg_bag1.o(.rodata);
|
2018-11-20 22:03:47 +00:00
|
|
|
sound/songs/midi/se_rg_bag2.o(.rodata);
|
2018-11-20 22:23:09 +00:00
|
|
|
sound/songs/midi/se_rg_getting.o(.rodata);
|
2018-11-20 22:37:10 +00:00
|
|
|
sound/songs/midi/se_rg_shop.o(.rodata);
|
2018-11-20 22:33:07 +00:00
|
|
|
sound/songs/midi/se_rg_kiteki.o(.rodata);
|
2018-11-20 22:30:56 +00:00
|
|
|
sound/songs/midi/se_rg_help_op.o(.rodata);
|
2018-11-20 22:27:09 +00:00
|
|
|
sound/songs/midi/se_rg_help_cl.o(.rodata);
|
2018-11-20 22:29:26 +00:00
|
|
|
sound/songs/midi/se_rg_help_ng.o(.rodata);
|
2018-11-20 22:17:48 +00:00
|
|
|
sound/songs/midi/se_rg_deomov.o(.rodata);
|
2018-11-20 22:20:31 +00:00
|
|
|
sound/songs/midi/se_rg_excellent.o(.rodata);
|
2018-11-20 22:35:18 +00:00
|
|
|
sound/songs/midi/se_rg_nawamiss.o(.rodata);
|
2019-03-24 20:13:51 +00:00
|
|
|
sound/songs/midi/se_toreeye.o(.rodata);
|
2019-03-24 20:15:35 +00:00
|
|
|
sound/songs/midi/se_toreoff.o(.rodata);
|
2018-10-10 20:02:20 +00:00
|
|
|
sound/songs/midi/se_hantei1.o(.rodata);
|
2018-10-10 20:03:27 +00:00
|
|
|
sound/songs/midi/se_hantei2.o(.rodata);
|
2018-10-10 19:04:57 +00:00
|
|
|
sound/songs/midi/se_curtain.o(.rodata);
|
2018-10-10 19:07:53 +00:00
|
|
|
sound/songs/midi/se_curtain1.o(.rodata);
|
2019-03-24 20:38:26 +00:00
|
|
|
sound/songs/midi/se_ussoki.o(.rodata);
|
2018-09-29 04:44:51 +00:00
|
|
|
sound/songs/midi/mus_tetsuji.o(.rodata);
|
2018-09-26 22:48:54 +00:00
|
|
|
sound/songs/midi/mus_field13.o(.rodata);
|
2018-09-27 03:53:27 +00:00
|
|
|
sound/songs/midi/mus_kachi22.o(.rodata);
|
2018-09-26 23:48:30 +00:00
|
|
|
sound/songs/midi/mus_kachi2.o(.rodata);
|
2018-09-27 03:49:51 +00:00
|
|
|
sound/songs/midi/mus_kachi3.o(.rodata);
|
2018-09-27 00:26:40 +00:00
|
|
|
sound/songs/midi/mus_kachi5.o(.rodata);
|
2018-09-29 03:56:10 +00:00
|
|
|
sound/songs/midi/mus_pcc.o(.rodata);
|
2018-09-29 03:46:30 +00:00
|
|
|
sound/songs/midi/mus_nibi.o(.rodata);
|
2018-09-29 04:25:10 +00:00
|
|
|
sound/songs/midi/mus_suikun.o(.rodata);
|
2018-09-26 03:03:18 +00:00
|
|
|
sound/songs/midi/mus_dooro1.o(.rodata);
|
2018-09-26 02:47:44 +00:00
|
|
|
sound/songs/midi/mus_dooro_x1.o(.rodata);
|
2018-09-26 02:57:29 +00:00
|
|
|
sound/songs/midi/mus_dooro_x3.o(.rodata);
|
2018-09-28 21:13:51 +00:00
|
|
|
sound/songs/midi/mus_machi_s2.o(.rodata);
|
2018-09-28 21:18:52 +00:00
|
|
|
sound/songs/midi/mus_machi_s4.o(.rodata);
|
2018-09-26 22:58:19 +00:00
|
|
|
sound/songs/midi/mus_gim.o(.rodata);
|
2018-09-23 21:12:59 +00:00
|
|
|
sound/songs/midi/mus_naminori.o(.rodata);
|
2018-09-26 00:07:10 +00:00
|
|
|
sound/songs/midi/mus_dan01.o(.rodata);
|
2018-09-26 22:41:29 +00:00
|
|
|
sound/songs/midi/mus_fanfa1.o(.rodata);
|
2018-09-28 21:27:41 +00:00
|
|
|
sound/songs/midi/mus_me_asa.o(.rodata);
|
2018-09-29 01:59:48 +00:00
|
|
|
sound/songs/midi/mus_me_bachi.o(.rodata);
|
2018-09-26 22:44:24 +00:00
|
|
|
sound/songs/midi/mus_fanfa4.o(.rodata);
|
2018-09-26 22:46:33 +00:00
|
|
|
sound/songs/midi/mus_fanfa5.o(.rodata);
|
2018-09-29 02:55:22 +00:00
|
|
|
sound/songs/midi/mus_me_waza.o(.rodata);
|
2018-09-25 21:02:54 +00:00
|
|
|
sound/songs/midi/mus_bijyutu.o(.rodata);
|
2018-09-26 03:00:10 +00:00
|
|
|
sound/songs/midi/mus_dooro_x4.o(.rodata);
|
2018-09-26 22:56:08 +00:00
|
|
|
sound/songs/midi/mus_fune_kan.o(.rodata);
|
2018-09-29 02:11:21 +00:00
|
|
|
sound/songs/midi/mus_me_shinka.o(.rodata);
|
2018-09-29 04:19:53 +00:00
|
|
|
sound/songs/midi/mus_shinka.o(.rodata);
|
2018-09-29 02:43:35 +00:00
|
|
|
sound/songs/midi/mus_me_wasure.o(.rodata);
|
2018-09-29 04:30:53 +00:00
|
|
|
sound/songs/midi/mus_syoujoeye.o(.rodata);
|
2018-09-25 21:11:50 +00:00
|
|
|
sound/songs/midi/mus_boyeye.o(.rodata);
|
2018-09-26 00:13:08 +00:00
|
|
|
sound/songs/midi/mus_dan02.o(.rodata);
|
2018-09-28 21:16:00 +00:00
|
|
|
sound/songs/midi/mus_machi_s3.o(.rodata);
|
2018-09-29 03:48:47 +00:00
|
|
|
sound/songs/midi/mus_odamaki.o(.rodata);
|
2018-09-25 06:42:54 +00:00
|
|
|
sound/songs/midi/mus_b_tower.o(.rodata);
|
2018-09-29 04:28:22 +00:00
|
|
|
sound/songs/midi/mus_swimeye.o(.rodata);
|
2018-09-26 00:17:26 +00:00
|
|
|
sound/songs/midi/mus_dan03.o(.rodata);
|
2018-09-29 02:02:01 +00:00
|
|
|
sound/songs/midi/mus_me_kinomi.o(.rodata);
|
2018-09-29 02:27:08 +00:00
|
|
|
sound/songs/midi/mus_me_tama.o(.rodata);
|
2018-09-28 23:31:55 +00:00
|
|
|
sound/songs/midi/mus_me_b_big.o(.rodata);
|
2018-09-29 01:56:33 +00:00
|
|
|
sound/songs/midi/mus_me_b_small.o(.rodata);
|
2018-09-29 03:01:00 +00:00
|
|
|
sound/songs/midi/mus_me_zannen.o(.rodata);
|
2018-09-25 20:59:56 +00:00
|
|
|
sound/songs/midi/mus_bd_time.o(.rodata);
|
2018-09-29 04:38:28 +00:00
|
|
|
sound/songs/midi/mus_test1.o(.rodata);
|
2018-09-29 04:39:46 +00:00
|
|
|
sound/songs/midi/mus_test2.o(.rodata);
|
2018-09-29 04:41:35 +00:00
|
|
|
sound/songs/midi/mus_test3.o(.rodata);
|
2018-09-29 04:43:00 +00:00
|
|
|
sound/songs/midi/mus_test4.o(.rodata);
|
2018-09-29 04:36:36 +00:00
|
|
|
sound/songs/midi/mus_test.o(.rodata);
|
2018-09-26 23:06:26 +00:00
|
|
|
sound/songs/midi/mus_gomachi0.o(.rodata);
|
2018-09-26 23:13:45 +00:00
|
|
|
sound/songs/midi/mus_gotown.o(.rodata);
|
2018-09-29 03:58:00 +00:00
|
|
|
sound/songs/midi/mus_pokecen.o(.rodata);
|
2018-09-29 03:42:15 +00:00
|
|
|
sound/songs/midi/mus_nextroad.o(.rodata);
|
2018-09-26 23:28:14 +00:00
|
|
|
sound/songs/midi/mus_granroad.o(.rodata);
|
2018-09-25 21:34:37 +00:00
|
|
|
sound/songs/midi/mus_cycling.o(.rodata);
|
2018-09-26 22:54:12 +00:00
|
|
|
sound/songs/midi/mus_friendly.o(.rodata);
|
2018-09-29 03:10:57 +00:00
|
|
|
sound/songs/midi/mus_mishiro.o(.rodata);
|
2018-09-29 07:21:07 +00:00
|
|
|
sound/songs/midi/mus_tozan.o(.rodata);
|
2018-09-26 23:04:26 +00:00
|
|
|
sound/songs/midi/mus_girleye.o(.rodata);
|
2018-09-29 03:08:04 +00:00
|
|
|
sound/songs/midi/mus_minamo.o(.rodata);
|
2018-09-24 02:35:20 +00:00
|
|
|
sound/songs/midi/mus_ashroad.o(.rodata);
|
2018-09-26 07:27:01 +00:00
|
|
|
sound/songs/midi/mus_event0.o(.rodata);
|
2018-09-26 00:19:36 +00:00
|
|
|
sound/songs/midi/mus_deepdeep.o(.rodata);
|
2018-09-26 23:43:31 +00:00
|
|
|
sound/songs/midi/mus_kachi1.o(.rodata);
|
2018-09-29 04:48:55 +00:00
|
|
|
sound/songs/midi/mus_title3.o(.rodata);
|
2018-09-26 00:23:51 +00:00
|
|
|
sound/songs/midi/mus_demo1.o(.rodata);
|
2018-09-26 23:01:13 +00:00
|
|
|
sound/songs/midi/mus_girl_sup.o(.rodata);
|
2018-09-26 23:31:11 +00:00
|
|
|
sound/songs/midi/mus_hageshii.o(.rodata);
|
2018-09-27 03:55:22 +00:00
|
|
|
sound/songs/midi/mus_kakkoii.o(.rodata);
|
2018-09-27 04:10:53 +00:00
|
|
|
sound/songs/midi/mus_kazanbai.o(.rodata);
|
2018-09-24 02:10:30 +00:00
|
|
|
sound/songs/midi/mus_aqa_0.o(.rodata);
|
2018-09-29 07:26:30 +00:00
|
|
|
sound/songs/midi/mus_tsuretek.o(.rodata);
|
2018-09-25 21:07:26 +00:00
|
|
|
sound/songs/midi/mus_boy_sup.o(.rodata);
|
2018-09-29 04:04:20 +00:00
|
|
|
sound/songs/midi/mus_rainbow.o(.rodata);
|
2018-09-24 03:16:58 +00:00
|
|
|
sound/songs/midi/mus_ayasii.o(.rodata);
|
2018-09-27 00:22:23 +00:00
|
|
|
sound/songs/midi/mus_kachi4.o(.rodata);
|
2018-09-24 03:20:44 +00:00
|
|
|
sound/songs/midi/mus_ropeway.o(.rodata);
|
2018-09-25 21:17:30 +00:00
|
|
|
sound/songs/midi/mus_casino.o(.rodata);
|
2018-09-26 23:35:23 +00:00
|
|
|
sound/songs/midi/mus_hightown.o(.rodata);
|
2018-09-29 04:12:54 +00:00
|
|
|
sound/songs/midi/mus_safari.o(.rodata);
|
2018-09-25 21:14:25 +00:00
|
|
|
sound/songs/midi/mus_c_road.o(.rodata);
|
2018-09-23 00:56:17 +00:00
|
|
|
sound/songs/midi/mus_ajito.o(.rodata);
|
2018-09-28 21:03:36 +00:00
|
|
|
sound/songs/midi/mus_m_boat.o(.rodata);
|
2018-09-28 21:07:34 +00:00
|
|
|
sound/songs/midi/mus_m_dungon.o(.rodata);
|
2018-09-26 22:52:03 +00:00
|
|
|
sound/songs/midi/mus_finecity.o(.rodata);
|
2018-09-28 21:21:09 +00:00
|
|
|
sound/songs/midi/mus_machupi.o(.rodata);
|
2018-09-29 03:54:02 +00:00
|
|
|
sound/songs/midi/mus_p_school.o(.rodata);
|
2018-09-26 00:32:01 +00:00
|
|
|
sound/songs/midi/mus_dendou.o(.rodata);
|
2018-09-29 04:50:43 +00:00
|
|
|
sound/songs/midi/mus_tonekusa.o(.rodata);
|
2018-09-28 21:11:33 +00:00
|
|
|
sound/songs/midi/mus_maborosi.o(.rodata);
|
2018-09-25 21:20:10 +00:00
|
|
|
sound/songs/midi/mus_con_fan.o(.rodata);
|
2018-09-25 21:32:45 +00:00
|
|
|
sound/songs/midi/mus_contest0.o(.rodata);
|
2018-09-29 03:04:18 +00:00
|
|
|
sound/songs/midi/mus_mgm0.o(.rodata);
|
2018-09-29 04:33:33 +00:00
|
|
|
sound/songs/midi/mus_t_battle.o(.rodata);
|
2018-09-29 03:51:36 +00:00
|
|
|
sound/songs/midi/mus_ooame.o(.rodata);
|
2018-09-26 23:33:29 +00:00
|
|
|
sound/songs/midi/mus_hideri.o(.rodata);
|
2018-09-29 04:10:18 +00:00
|
|
|
sound/songs/midi/mus_runecity.o(.rodata);
|
2018-09-25 21:25:36 +00:00
|
|
|
sound/songs/midi/mus_con_k.o(.rodata);
|
2018-09-26 03:47:55 +00:00
|
|
|
sound/songs/midi/mus_eikou_r.o(.rodata);
|
2018-09-27 03:57:32 +00:00
|
|
|
sound/songs/midi/mus_karakuri.o(.rodata);
|
2018-09-26 23:37:55 +00:00
|
|
|
sound/songs/midi/mus_hutago.o(.rodata);
|
2018-09-29 04:22:56 +00:00
|
|
|
sound/songs/midi/mus_sitennou.o(.rodata);
|
2018-09-29 20:33:41 +00:00
|
|
|
sound/songs/midi/mus_yama_eye.o(.rodata);
|
2018-09-25 21:30:31 +00:00
|
|
|
sound/songs/midi/mus_conlobby.o(.rodata);
|
2018-09-26 23:40:24 +00:00
|
|
|
sound/songs/midi/mus_inter_v.o(.rodata);
|
2018-09-26 02:22:02 +00:00
|
|
|
sound/songs/midi/mus_daigo.o(.rodata);
|
2018-09-29 04:46:35 +00:00
|
|
|
sound/songs/midi/mus_thankfor.o(.rodata);
|
2018-09-26 07:17:13 +00:00
|
|
|
sound/songs/midi/mus_end.o(.rodata);
|
2018-09-24 04:05:45 +00:00
|
|
|
sound/songs/midi/mus_b_frontier.o(.rodata);
|
2018-09-24 03:25:34 +00:00
|
|
|
sound/songs/midi/mus_b_arena.o(.rodata);
|
2018-09-29 02:07:26 +00:00
|
|
|
sound/songs/midi/mus_me_pointget.o(.rodata);
|
2018-09-29 02:39:17 +00:00
|
|
|
sound/songs/midi/mus_me_tore_eye.o(.rodata);
|
2018-09-29 03:59:57 +00:00
|
|
|
sound/songs/midi/mus_pyramid.o(.rodata);
|
2018-09-29 04:02:21 +00:00
|
|
|
sound/songs/midi/mus_pyramid_top.o(.rodata);
|
2018-09-24 04:39:24 +00:00
|
|
|
sound/songs/midi/mus_b_palace.o(.rodata);
|
2018-09-29 04:06:37 +00:00
|
|
|
sound/songs/midi/mus_rekkuu_kourin.o(.rodata);
|
2018-09-29 04:17:49 +00:00
|
|
|
sound/songs/midi/mus_sattower.o(.rodata);
|
2018-09-29 02:21:33 +00:00
|
|
|
sound/songs/midi/mus_me_symbolget.o(.rodata);
|
2018-09-24 03:28:02 +00:00
|
|
|
sound/songs/midi/mus_b_dome.o(.rodata);
|
2018-09-25 18:32:56 +00:00
|
|
|
sound/songs/midi/mus_b_tube.o(.rodata);
|
2018-09-24 04:43:25 +00:00
|
|
|
sound/songs/midi/mus_b_factory.o(.rodata);
|
2018-09-29 20:30:15 +00:00
|
|
|
sound/songs/midi/mus_vs_rekku.o(.rodata);
|
2018-09-29 20:24:08 +00:00
|
|
|
sound/songs/midi/mus_vs_front.o(.rodata);
|
2018-09-29 20:28:18 +00:00
|
|
|
sound/songs/midi/mus_vs_mew.o(.rodata);
|
2018-09-24 03:31:01 +00:00
|
|
|
sound/songs/midi/mus_b_dome1.o(.rodata);
|
2018-09-25 20:32:48 +00:00
|
|
|
sound/songs/midi/mus_battle27.o(.rodata);
|
2018-09-25 20:40:09 +00:00
|
|
|
sound/songs/midi/mus_battle31.o(.rodata);
|
2018-09-25 20:28:35 +00:00
|
|
|
sound/songs/midi/mus_battle20.o(.rodata);
|
2018-09-25 20:43:02 +00:00
|
|
|
sound/songs/midi/mus_battle32.o(.rodata);
|
2018-09-25 20:44:58 +00:00
|
|
|
sound/songs/midi/mus_battle33.o(.rodata);
|
2018-09-25 20:52:00 +00:00
|
|
|
sound/songs/midi/mus_battle36.o(.rodata);
|
2018-09-25 20:47:25 +00:00
|
|
|
sound/songs/midi/mus_battle34.o(.rodata);
|
2018-09-25 20:49:19 +00:00
|
|
|
sound/songs/midi/mus_battle35.o(.rodata);
|
2018-09-25 20:53:58 +00:00
|
|
|
sound/songs/midi/mus_battle38.o(.rodata);
|
2018-09-25 20:37:29 +00:00
|
|
|
sound/songs/midi/mus_battle30.o(.rodata);
|
2018-10-01 19:58:31 +00:00
|
|
|
sound/songs/midi/mus_rg_annai.o(.rodata);
|
2018-10-03 01:31:11 +00:00
|
|
|
sound/songs/midi/mus_rg_slot.o(.rodata);
|
2018-10-01 19:47:18 +00:00
|
|
|
sound/songs/midi/mus_rg_ajito.o(.rodata);
|
2018-10-02 04:56:34 +00:00
|
|
|
sound/songs/midi/mus_rg_gym.o(.rodata);
|
2018-10-03 00:19:39 +00:00
|
|
|
sound/songs/midi/mus_rg_purin.o(.rodata);
|
2018-10-01 20:08:57 +00:00
|
|
|
sound/songs/midi/mus_rg_demo.o(.rodata);
|
2018-10-03 03:53:50 +00:00
|
|
|
sound/songs/midi/mus_rg_title.o(.rodata);
|
2018-10-02 04:54:45 +00:00
|
|
|
sound/songs/midi/mus_rg_guren.o(.rodata);
|
2018-10-03 01:20:32 +00:00
|
|
|
sound/songs/midi/mus_rg_shion.o(.rodata);
|
2018-10-02 05:03:26 +00:00
|
|
|
sound/songs/midi/mus_rg_kaihuku.o(.rodata);
|
2018-10-01 20:05:57 +00:00
|
|
|
sound/songs/midi/mus_rg_cycling.o(.rodata);
|
2018-10-03 01:09:35 +00:00
|
|
|
sound/songs/midi/mus_rg_rocket.o(.rodata);
|
2018-10-03 01:27:13 +00:00
|
|
|
sound/songs/midi/mus_rg_shoujo.o(.rodata);
|
2018-10-03 01:29:13 +00:00
|
|
|
sound/songs/midi/mus_rg_shounen.o(.rodata);
|
2018-10-02 01:22:56 +00:00
|
|
|
sound/songs/midi/mus_rg_dendou.o(.rodata);
|
2018-10-03 01:42:10 +00:00
|
|
|
sound/songs/midi/mus_rg_t_mori.o(.rodata);
|
2018-10-03 00:06:19 +00:00
|
|
|
sound/songs/midi/mus_rg_otsukimi.o(.rodata);
|
2018-10-03 00:17:49 +00:00
|
|
|
sound/songs/midi/mus_rg_pokeyashi.o(.rodata);
|
2018-10-02 04:29:36 +00:00
|
|
|
sound/songs/midi/mus_rg_ending.o(.rodata);
|
2018-10-02 05:21:51 +00:00
|
|
|
sound/songs/midi/mus_rg_load01.o(.rodata);
|
2018-10-02 23:40:09 +00:00
|
|
|
sound/songs/midi/mus_rg_opening.o(.rodata);
|
2018-10-02 17:56:42 +00:00
|
|
|
sound/songs/midi/mus_rg_load02.o(.rodata);
|
2018-10-02 18:05:05 +00:00
|
|
|
sound/songs/midi/mus_rg_load03.o(.rodata);
|
2018-10-01 20:02:50 +00:00
|
|
|
sound/songs/midi/mus_rg_champ_r.o(.rodata);
|
2018-10-03 04:06:42 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_gym.o(.rodata);
|
2018-10-03 04:11:50 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_tore.o(.rodata);
|
2018-10-03 04:13:14 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_yasei.o(.rodata);
|
2018-10-03 04:08:37 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_last.o(.rodata);
|
2018-10-02 18:06:50 +00:00
|
|
|
sound/songs/midi/mus_rg_masara.o(.rodata);
|
2018-10-02 05:14:30 +00:00
|
|
|
sound/songs/midi/mus_rg_kenkyu.o(.rodata);
|
2018-10-02 23:35:12 +00:00
|
|
|
sound/songs/midi/mus_rg_ohkido.o(.rodata);
|
2018-10-03 00:12:23 +00:00
|
|
|
sound/songs/midi/mus_rg_pokecen.o(.rodata);
|
2018-10-03 01:12:18 +00:00
|
|
|
sound/songs/midi/mus_rg_santoan.o(.rodata);
|
2018-10-02 18:33:10 +00:00
|
|
|
sound/songs/midi/mus_rg_naminori.o(.rodata);
|
2018-10-03 00:10:38 +00:00
|
|
|
sound/songs/midi/mus_rg_p_tower.o(.rodata);
|
2018-10-03 01:24:37 +00:00
|
|
|
sound/songs/midi/mus_rg_shiruhu.o(.rodata);
|
2018-10-02 04:58:22 +00:00
|
|
|
sound/songs/midi/mus_rg_hanada.o(.rodata);
|
2018-10-03 03:51:42 +00:00
|
|
|
sound/songs/midi/mus_rg_tamamusi.o(.rodata);
|
2018-10-03 05:19:03 +00:00
|
|
|
sound/songs/midi/mus_rg_win_tre.o(.rodata);
|
2018-10-03 05:27:26 +00:00
|
|
|
sound/songs/midi/mus_rg_win_yasei.o(.rodata);
|
2018-10-03 04:54:32 +00:00
|
|
|
sound/songs/midi/mus_rg_win_gym.o(.rodata);
|
2018-10-02 05:19:11 +00:00
|
|
|
sound/songs/midi/mus_rg_kuchiba.o(.rodata);
|
2018-10-02 20:27:02 +00:00
|
|
|
sound/songs/midi/mus_rg_nibi.o(.rodata);
|
2018-10-03 00:21:15 +00:00
|
|
|
sound/songs/midi/mus_rg_rival1.o(.rodata);
|
2018-10-03 00:23:06 +00:00
|
|
|
sound/songs/midi/mus_rg_rival2.o(.rodata);
|
2018-10-02 04:35:45 +00:00
|
|
|
sound/songs/midi/mus_rg_fan2.o(.rodata);
|
2018-10-02 04:39:39 +00:00
|
|
|
sound/songs/midi/mus_rg_fan5.o(.rodata);
|
2018-10-02 04:49:32 +00:00
|
|
|
sound/songs/midi/mus_rg_fan6.o(.rodata);
|
2018-10-01 18:59:38 +00:00
|
|
|
sound/songs/midi/mus_me_rg_photo.o(.rodata);
|
2018-10-03 03:56:45 +00:00
|
|
|
sound/songs/midi/mus_rg_titlerog.o(.rodata);
|
2018-10-02 04:52:37 +00:00
|
|
|
sound/songs/midi/mus_rg_get_yasei.o(.rodata);
|
2018-10-03 01:39:08 +00:00
|
|
|
sound/songs/midi/mus_rg_sousa.o(.rodata);
|
2018-10-03 01:18:48 +00:00
|
|
|
sound/songs/midi/mus_rg_sekaikan.o(.rodata);
|
2018-10-03 01:16:29 +00:00
|
|
|
sound/songs/midi/mus_rg_seibetu.o(.rodata);
|
2018-10-02 05:00:30 +00:00
|
|
|
sound/songs/midi/mus_rg_jump.o(.rodata);
|
2018-10-03 04:01:14 +00:00
|
|
|
sound/songs/midi/mus_rg_union.o(.rodata);
|
2018-10-02 20:21:35 +00:00
|
|
|
sound/songs/midi/mus_rg_network.o(.rodata);
|
2018-10-02 23:37:07 +00:00
|
|
|
sound/songs/midi/mus_rg_okurimono.o(.rodata);
|
2018-10-02 05:17:13 +00:00
|
|
|
sound/songs/midi/mus_rg_kinomikui.o(.rodata);
|
2018-10-02 19:09:49 +00:00
|
|
|
sound/songs/midi/mus_rg_nanadungeon.o(.rodata);
|
2018-10-02 23:52:12 +00:00
|
|
|
sound/songs/midi/mus_rg_oshie_tv.o(.rodata);
|
2018-10-02 20:19:11 +00:00
|
|
|
sound/songs/midi/mus_rg_nanashima.o(.rodata);
|
2018-10-02 20:16:22 +00:00
|
|
|
sound/songs/midi/mus_rg_nanaiseki.o(.rodata);
|
2018-10-02 18:42:51 +00:00
|
|
|
sound/songs/midi/mus_rg_nana123.o(.rodata);
|
2018-10-02 18:39:30 +00:00
|
|
|
sound/songs/midi/mus_rg_nana45.o(.rodata);
|
2018-10-02 18:41:08 +00:00
|
|
|
sound/songs/midi/mus_rg_nana67.o(.rodata);
|
2018-10-03 00:16:20 +00:00
|
|
|
sound/songs/midi/mus_rg_pokefue.o(.rodata);
|
2018-10-03 04:04:47 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_deo.o(.rodata);
|
2018-10-03 04:10:16 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_myu2.o(.rodata);
|
2018-10-03 04:03:18 +00:00
|
|
|
sound/songs/midi/mus_rg_vs_den.o(.rodata);
|
2018-10-02 04:31:47 +00:00
|
|
|
sound/songs/midi/mus_rg_exeye.o(.rodata);
|
2018-10-02 01:25:30 +00:00
|
|
|
sound/songs/midi/mus_rg_deoeye.o(.rodata);
|
2018-10-03 02:37:41 +00:00
|
|
|
sound/songs/midi/mus_rg_t_tower.o(.rodata);
|
2018-10-03 01:35:32 +00:00
|
|
|
sound/songs/midi/mus_rg_slowmasara.o(.rodata);
|
2018-10-03 03:59:34 +00:00
|
|
|
sound/songs/midi/mus_rg_tvnoize.o(.rodata);
|
2018-10-03 21:47:57 +00:00
|
|
|
sound/songs/midi/ph_trap_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_trap_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_trap_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_face_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_face_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_face_solo.o(.rodata);
|
2018-10-03 21:24:20 +00:00
|
|
|
sound/songs/midi/ph_cloth_blend.o(.rodata);
|
2018-10-03 21:26:06 +00:00
|
|
|
sound/songs/midi/ph_cloth_held.o(.rodata);
|
2018-10-03 21:26:34 +00:00
|
|
|
sound/songs/midi/ph_cloth_solo.o(.rodata);
|
2018-10-03 21:47:57 +00:00
|
|
|
sound/songs/midi/ph_dress_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_dress_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_dress_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_fleece_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_fleece_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_fleece_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_kit_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_kit_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_kit_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_price_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_price_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_price_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_lot_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_lot_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_lot_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_goat_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_goat_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_goat_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_thought_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_thought_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_thought_solo.o(.rodata);
|
2018-10-03 21:20:10 +00:00
|
|
|
sound/songs/midi/ph_choice_blend.o(.rodata);
|
2018-10-03 21:21:42 +00:00
|
|
|
sound/songs/midi/ph_choice_held.o(.rodata);
|
2018-10-03 21:22:56 +00:00
|
|
|
sound/songs/midi/ph_choice_solo.o(.rodata);
|
2018-10-03 21:47:57 +00:00
|
|
|
sound/songs/midi/ph_mouth_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_mouth_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_mouth_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_foot_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_foot_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_foot_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_goose_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_goose_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_goose_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_strut_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_strut_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_strut_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_cure_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_cure_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_cure_solo.o(.rodata);
|
|
|
|
sound/songs/midi/ph_nurse_blend.o(.rodata);
|
|
|
|
sound/songs/midi/ph_nurse_held.o(.rodata);
|
|
|
|
sound/songs/midi/ph_nurse_solo.o(.rodata);
|
2017-12-21 22:24:11 +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
|
|
|
{
|
2019-06-27 10:55:50 +00:00
|
|
|
src/m4a.o(.rodata);
|
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);
|
2020-01-15 23:28:23 +00:00
|
|
|
src/librfu_rfu.o(.rodata);
|
|
|
|
src/librfu_sio32id.o(.rodata);
|
2018-05-22 21:05:56 +00:00
|
|
|
*libgcc.a:_divdi3.o(.rodata);
|
|
|
|
*libgcc.a:_udivdi3.o(.rodata);
|
|
|
|
*libc.a(.rodata);
|
|
|
|
*libc.a(.data);
|
|
|
|
*libc.a:syscalls.o(.rodata);
|
2018-01-07 02:12:42 +00:00
|
|
|
src/libisagbprn.o(.rodata);
|
2016-09-03 11:11:10 +00:00
|
|
|
} =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
|
|
|
|
|
2019-07-10 08:01:15 +00:00
|
|
|
anim_mon_front_pic_data __anim_mon_load_address :
|
2016-09-03 10:03:50 +00:00
|
|
|
ALIGN(4)
|
|
|
|
{
|
2018-09-05 22:53:54 +00:00
|
|
|
src/anim_mon_front_pics.o(.rodata);
|
2016-09-03 10:03:50 +00:00
|
|
|
} =0
|
|
|
|
|
2019-07-10 08:01:15 +00:00
|
|
|
gfx_data __gfx_load_address :
|
2016-09-03 10:03:50 +00:00
|
|
|
ALIGN(4)
|
|
|
|
{
|
2018-08-24 03:21:07 +00:00
|
|
|
src/graphics.o(.rodata);
|
2016-09-03 10:03:50 +00:00
|
|
|
} =0
|
|
|
|
|
2019-01-06 13:04:03 +00:00
|
|
|
/* DWARF debug sections.
|
|
|
|
Symbols in the DWARF debugging sections are relative to the beginning
|
|
|
|
of the section so we begin them at 0. */
|
|
|
|
|
|
|
|
/* DWARF 1 */
|
|
|
|
.debug 0 : { *(.debug) }
|
|
|
|
.line 0 : { *(.line) }
|
|
|
|
|
|
|
|
/* GNU DWARF 1 extensions */
|
|
|
|
.debug_srcinfo 0 : { *(.debug_srcinfo) }
|
|
|
|
.debug_sfnames 0 : { *(.debug_sfnames) }
|
|
|
|
|
|
|
|
/* DWARF 1.1 and DWARF 2 */
|
|
|
|
.debug_aranges 0 : { *(.debug_aranges) }
|
|
|
|
.debug_pubnames 0 : { *(.debug_pubnames) }
|
|
|
|
|
|
|
|
/* DWARF 2 */
|
|
|
|
.debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
|
|
|
.debug_abbrev 0 : { *(.debug_abbrev) }
|
|
|
|
.debug_line 0 : { *(.debug_line) }
|
|
|
|
.debug_frame 0 : { *(.debug_frame) }
|
|
|
|
.debug_str 0 : { *(.debug_str) }
|
|
|
|
.debug_loc 0 : { *(.debug_loc) }
|
|
|
|
.debug_macinfo 0 : { *(.debug_macinfo) }
|
|
|
|
|
2016-09-03 08:11:14 +00:00
|
|
|
/* Discard everything not specifically mentioned above. */
|
|
|
|
/DISCARD/ :
|
|
|
|
{
|
|
|
|
*(*);
|
|
|
|
}
|
2015-10-05 13:03:59 +00:00
|
|
|
}
|