mirror of
https://github.com/pret/pokefirered.git
synced 2026-08-20 16:24:24 -05:00
Merge branch 'master' into battle
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -39,6 +39,7 @@ cmake-build-*
|
||||
ld_script_ruby.txt
|
||||
ld_script_sapphire.txt
|
||||
sound/**/*.bin
|
||||
sound/songs/midi/*.s
|
||||
src/*.s
|
||||
src/data/items.h
|
||||
tags
|
||||
|
||||
12
Makefile
12
Makefile
@@ -48,11 +48,13 @@ C_SUBDIR = src
|
||||
ASM_SUBDIR = asm
|
||||
DATA_ASM_SUBDIR = data
|
||||
SONG_SUBDIR = sound/songs
|
||||
MID_SUBDIR = sound/songs/midi
|
||||
|
||||
C_BUILDDIR = $(OBJ_DIR)/$(C_SUBDIR)
|
||||
ASM_BUILDDIR = $(OBJ_DIR)/$(ASM_SUBDIR)
|
||||
DATA_ASM_BUILDDIR = $(OBJ_DIR)/$(DATA_ASM_SUBDIR)
|
||||
SONG_BUILDDIR = $(OBJ_DIR)/$(SONG_SUBDIR)
|
||||
MID_BUILDDIR = $(OBJ_DIR)/$(MID_SUBDIR)
|
||||
|
||||
ASFLAGS := -mcpu=arm7tdmi --defsym $(GAME_VERSION)=1 --defsym REVISION=$(REVISION) --defsym $(GAME_LANGUAGE)=1
|
||||
|
||||
@@ -86,7 +88,7 @@ JSONPROC := tools/jsonproc/jsonproc
|
||||
# Secondary expansion is required for dependency variables in object rules.
|
||||
.SECONDEXPANSION:
|
||||
|
||||
$(shell mkdir -p $(C_BUILDDIR) $(ASM_BUILDDIR) $(DATA_ASM_BUILDDIR) $(SONG_BUILDDIR))
|
||||
$(shell mkdir -p $(C_BUILDDIR) $(ASM_BUILDDIR) $(DATA_ASM_BUILDDIR) $(SONG_BUILDDIR) $(MID_BUILDDIR))
|
||||
|
||||
infoshell = $(foreach line, $(shell $1 | sed "s/ /__SPACE__/g"), $(info $(subst __SPACE__, ,$(line))))
|
||||
|
||||
@@ -110,7 +112,10 @@ DATA_ASM_OBJS := $(patsubst $(DATA_ASM_SUBDIR)/%.s,$(DATA_ASM_BUILDDIR)/%.o,$(DA
|
||||
SONG_SRCS := $(wildcard $(SONG_SUBDIR)/*.s)
|
||||
SONG_OBJS := $(patsubst $(SONG_SUBDIR)/%.s,$(SONG_BUILDDIR)/%.o,$(SONG_SRCS))
|
||||
|
||||
OBJS := $(C_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS) $(SONG_OBJS)
|
||||
MID_SRCS := $(wildcard $(MID_SUBDIR)/*.mid)
|
||||
MID_OBJS := $(patsubst $(MID_SUBDIR)/%.mid,$(MID_BUILDDIR)/%.o,$(MID_SRCS))
|
||||
|
||||
OBJS := $(C_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS) $(SONG_OBJS) $(MID_OBJS)
|
||||
OBJS_REL := $(patsubst $(OBJ_DIR)/%,%,$(OBJS))
|
||||
|
||||
TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
|
||||
@@ -141,7 +146,7 @@ compare:
|
||||
|
||||
mostlyclean: tidy
|
||||
rm -f sound/direct_sound_samples/*.bin
|
||||
rm -f $(SONG_OBJS)
|
||||
rm -f $(SONG_OBJS) $(MID_SUBDIR)/*.s
|
||||
find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' -o -iname '*.latfont' -o -iname '*.hwjpnfont' -o -iname '*.fwjpnfont' \) -exec rm {} +
|
||||
rm -f $(DATA_ASM_SUBDIR)/layouts/layouts.inc $(DATA_ASM_SUBDIR)/layouts/layouts_table.inc
|
||||
rm -f $(DATA_ASM_SUBDIR)/maps/connections.inc $(DATA_ASM_SUBDIR)/maps/events.inc $(DATA_ASM_SUBDIR)/maps/groups.inc $(DATA_ASM_SUBDIR)/maps/headers.inc
|
||||
@@ -163,6 +168,7 @@ include graphics_file_rules.mk
|
||||
include tileset_rules.mk
|
||||
include map_data_rules.mk
|
||||
include json_data_rules.mk
|
||||
include songs.mk
|
||||
|
||||
%.s: ;
|
||||
%.png: ;
|
||||
|
||||
@@ -2411,7 +2411,7 @@ _08055DDC:
|
||||
bgt _08055E24
|
||||
ldr r0, _08055E1C @ =gMPlayInfo_BGM
|
||||
ldr r1, [r0]
|
||||
ldr r0, _08055E20 @ =gSong_86E6B0C
|
||||
ldr r0, _08055E20 @ =mus_win_gym
|
||||
cmp r1, r0
|
||||
bne _08055E24
|
||||
movs r0, 0x4
|
||||
@@ -2421,7 +2421,7 @@ _08055DDC:
|
||||
_08055E14: .4byte gSaveBlock1Ptr
|
||||
_08055E18: .4byte 0x00004f01
|
||||
_08055E1C: .4byte gMPlayInfo_BGM
|
||||
_08055E20: .4byte gSong_86E6B0C
|
||||
_08055E20: .4byte mus_win_gym
|
||||
_08055E24:
|
||||
bl sub_8055D8C
|
||||
lsls r0, 16
|
||||
|
||||
1244
data/sound_data.s
1244
data/sound_data.s
File diff suppressed because it is too large
Load Diff
@@ -368,7 +368,7 @@ extern const u8 gNoiseTable[];
|
||||
|
||||
extern const struct PokemonCrySong gPokemonCrySongTemplate;
|
||||
|
||||
extern const struct ToneData voicegroup_pokemon_cry;
|
||||
extern const struct ToneData voicegroup000;
|
||||
|
||||
extern char gNumMusicPlayers[];
|
||||
extern char gMaxLines[];
|
||||
|
||||
352
ld_script.txt
352
ld_script.txt
@@ -519,6 +519,358 @@ SECTIONS {
|
||||
data/sound_data.o(.rodata);
|
||||
} =0
|
||||
|
||||
songs :
|
||||
ALIGN(4)
|
||||
{
|
||||
sound/songs/midi/mus_dummy.o(.rodata);
|
||||
sound/songs/midi/se_kaifuku.o(.rodata);
|
||||
sound/songs/midi/se_pc_login.o(.rodata);
|
||||
sound/songs/midi/se_pc_off.o(.rodata);
|
||||
sound/songs/midi/se_pc_on.o(.rodata);
|
||||
sound/songs/midi/se_select.o(.rodata);
|
||||
sound/songs/se_win_open.o(.rodata);
|
||||
sound/songs/se_wall_hit.o(.rodata);
|
||||
sound/songs/midi/se_door.o(.rodata);
|
||||
sound/songs/midi/se_kaidan.o(.rodata);
|
||||
sound/songs/midi/se_dansa.o(.rodata);
|
||||
sound/songs/midi/se_jitensya.o(.rodata);
|
||||
sound/songs/midi/se_kouka_l.o(.rodata);
|
||||
sound/songs/midi/se_kouka_m.o(.rodata);
|
||||
sound/songs/midi/se_kouka_h.o(.rodata);
|
||||
sound/songs/midi/se_bowa2.o(.rodata);
|
||||
sound/songs/midi/se_poke_dead.o(.rodata);
|
||||
sound/songs/midi/se_nigeru.o(.rodata);
|
||||
sound/songs/midi/se_jido_doa.o(.rodata);
|
||||
sound/songs/midi/se_naminori.o(.rodata);
|
||||
sound/songs/midi/se_ban.o(.rodata);
|
||||
sound/songs/midi/se_pin.o(.rodata);
|
||||
sound/songs/midi/se_boo.o(.rodata);
|
||||
sound/songs/midi/se_bowa.o(.rodata);
|
||||
sound/songs/midi/se_jyuni.o(.rodata);
|
||||
sound/songs/midi/se_seikai.o(.rodata);
|
||||
sound/songs/midi/se_hazure.o(.rodata);
|
||||
sound/songs/midi/se_exp.o(.rodata);
|
||||
sound/songs/midi/se_jite_pyoko.o(.rodata);
|
||||
sound/songs/midi/se_mu_pachi.o(.rodata);
|
||||
sound/songs/midi/se_tk_kasya.o(.rodata);
|
||||
sound/songs/midi/se_fu_zaku.o(.rodata);
|
||||
sound/songs/midi/se_fu_zaku2.o(.rodata);
|
||||
sound/songs/midi/se_fu_zuzuzu.o(.rodata);
|
||||
sound/songs/midi/se_ru_gashin.o(.rodata);
|
||||
sound/songs/midi/se_ru_gasyan.o(.rodata);
|
||||
sound/songs/midi/se_ru_bari.o(.rodata);
|
||||
sound/songs/midi/se_ru_hyuu.o(.rodata);
|
||||
sound/songs/midi/se_ki_gasyan.o(.rodata);
|
||||
sound/songs/midi/se_tk_warpin.o(.rodata);
|
||||
sound/songs/midi/se_tk_warpout.o(.rodata);
|
||||
sound/songs/midi/se_tu_saa.o(.rodata);
|
||||
sound/songs/midi/se_hi_turun.o(.rodata);
|
||||
sound/songs/midi/se_track_move.o(.rodata);
|
||||
sound/songs/midi/se_track_stop.o(.rodata);
|
||||
sound/songs/midi/se_track_haiki.o(.rodata);
|
||||
sound/songs/midi/se_track_door.o(.rodata);
|
||||
sound/songs/midi/se_moter.o(.rodata);
|
||||
sound/songs/midi/se_save.o(.rodata);
|
||||
sound/songs/midi/se_kon.o(.rodata);
|
||||
sound/songs/midi/se_kon2.o(.rodata);
|
||||
sound/songs/midi/se_kon3.o(.rodata);
|
||||
sound/songs/midi/se_kon4.o(.rodata);
|
||||
sound/songs/midi/se_suikomu.o(.rodata);
|
||||
sound/songs/midi/se_nageru.o(.rodata);
|
||||
sound/songs/midi/se_toy_c.o(.rodata);
|
||||
sound/songs/midi/se_toy_d.o(.rodata);
|
||||
sound/songs/midi/se_toy_e.o(.rodata);
|
||||
sound/songs/midi/se_toy_f.o(.rodata);
|
||||
sound/songs/midi/se_toy_g.o(.rodata);
|
||||
sound/songs/midi/se_toy_a.o(.rodata);
|
||||
sound/songs/midi/se_toy_b.o(.rodata);
|
||||
sound/songs/midi/se_toy_c1.o(.rodata);
|
||||
sound/songs/midi/se_mizu.o(.rodata);
|
||||
sound/songs/midi/se_hashi.o(.rodata);
|
||||
sound/songs/midi/se_daugi.o(.rodata);
|
||||
sound/songs/midi/se_pinpon.o(.rodata);
|
||||
sound/songs/midi/se_fuusen1.o(.rodata);
|
||||
sound/songs/midi/se_fuusen2.o(.rodata);
|
||||
sound/songs/midi/se_fuusen3.o(.rodata);
|
||||
sound/songs/midi/se_toy_kabe.o(.rodata);
|
||||
sound/songs/midi/se_toy_dango.o(.rodata);
|
||||
sound/songs/midi/se_doku.o(.rodata);
|
||||
sound/songs/midi/se_esuka.o(.rodata);
|
||||
sound/songs/midi/se_t_ame.o(.rodata);
|
||||
sound/songs/midi/se_t_ame_e.o(.rodata);
|
||||
sound/songs/midi/se_t_ooame.o(.rodata);
|
||||
sound/songs/midi/se_t_ooame_e.o(.rodata);
|
||||
sound/songs/midi/se_t_koame.o(.rodata);
|
||||
sound/songs/midi/se_t_koame_e.o(.rodata);
|
||||
sound/songs/midi/se_t_kami.o(.rodata);
|
||||
sound/songs/midi/se_t_kami2.o(.rodata);
|
||||
sound/songs/midi/se_elebeta.o(.rodata);
|
||||
sound/songs/midi/se_hinsi.o(.rodata);
|
||||
sound/songs/midi/se_expmax.o(.rodata);
|
||||
sound/songs/midi/se_tamakoro.o(.rodata);
|
||||
sound/songs/midi/se_tamakoro_e.o(.rodata);
|
||||
sound/songs/midi/se_basabasa.o(.rodata);
|
||||
sound/songs/midi/se_regi.o(.rodata);
|
||||
sound/songs/midi/se_c_gaji.o(.rodata);
|
||||
sound/songs/midi/se_c_maku_u.o(.rodata);
|
||||
sound/songs/midi/se_c_maku_d.o(.rodata);
|
||||
sound/songs/midi/se_c_pasi.o(.rodata);
|
||||
sound/songs/midi/se_c_syu.o(.rodata);
|
||||
sound/songs/midi/se_c_pikon.o(.rodata);
|
||||
sound/songs/midi/se_reapoke.o(.rodata);
|
||||
sound/songs/midi/se_op_basyu.o(.rodata);
|
||||
sound/songs/midi/se_bt_start.o(.rodata);
|
||||
sound/songs/midi/se_dendou.o(.rodata);
|
||||
sound/songs/midi/se_jihanki.o(.rodata);
|
||||
sound/songs/midi/se_tama.o(.rodata);
|
||||
sound/songs/se_z_scroll.o(.rodata);
|
||||
sound/songs/se_z_page.o(.rodata);
|
||||
sound/songs/midi/se_pn_on.o(.rodata);
|
||||
sound/songs/midi/se_pn_off.o(.rodata);
|
||||
sound/songs/midi/se_z_search.o(.rodata);
|
||||
sound/songs/midi/se_tamago.o(.rodata);
|
||||
sound/songs/midi/se_tb_start.o(.rodata);
|
||||
sound/songs/midi/se_tb_kon.o(.rodata);
|
||||
sound/songs/midi/se_tb_kara.o(.rodata);
|
||||
sound/songs/midi/se_bidoro.o(.rodata);
|
||||
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);
|
||||
sound/songs/midi/se_w015.o(.rodata);
|
||||
sound/songs/se_w081.o(.rodata);
|
||||
sound/songs/se_w081b.o(.rodata);
|
||||
sound/songs/se_w088.o(.rodata);
|
||||
sound/songs/midi/se_w016.o(.rodata);
|
||||
sound/songs/midi/se_w016b.o(.rodata);
|
||||
sound/songs/midi/se_w003.o(.rodata);
|
||||
sound/songs/se_w104.o(.rodata);
|
||||
sound/songs/midi/se_w013.o(.rodata);
|
||||
sound/songs/se_w196.o(.rodata);
|
||||
sound/songs/se_w086.o(.rodata);
|
||||
sound/songs/midi/se_w004.o(.rodata);
|
||||
sound/songs/midi/se_w025.o(.rodata);
|
||||
sound/songs/midi/se_w025b.o(.rodata);
|
||||
sound/songs/se_w152.o(.rodata);
|
||||
sound/songs/midi/se_w026.o(.rodata);
|
||||
sound/songs/se_w172.o(.rodata);
|
||||
sound/songs/se_w172b.o(.rodata);
|
||||
sound/songs/se_w053.o(.rodata);
|
||||
sound/songs/midi/se_w007.o(.rodata);
|
||||
sound/songs/se_w092.o(.rodata);
|
||||
sound/songs/se_w221.o(.rodata);
|
||||
sound/songs/se_w221b.o(.rodata);
|
||||
sound/songs/se_w052.o(.rodata);
|
||||
sound/songs/midi/se_w036.o(.rodata);
|
||||
sound/songs/se_w059.o(.rodata);
|
||||
sound/songs/se_w059b.o(.rodata);
|
||||
sound/songs/midi/se_w010.o(.rodata);
|
||||
sound/songs/midi/se_w011.o(.rodata);
|
||||
sound/songs/midi/se_w017.o(.rodata);
|
||||
sound/songs/midi/se_w019.o(.rodata);
|
||||
sound/songs/midi/se_w028.o(.rodata);
|
||||
sound/songs/midi/se_w013b.o(.rodata);
|
||||
sound/songs/se_w044.o(.rodata);
|
||||
sound/songs/midi/se_w029.o(.rodata);
|
||||
sound/songs/se_w057.o(.rodata);
|
||||
sound/songs/se_w056.o(.rodata);
|
||||
sound/songs/se_w250.o(.rodata);
|
||||
sound/songs/midi/se_w030.o(.rodata);
|
||||
sound/songs/midi/se_w039.o(.rodata);
|
||||
sound/songs/se_w054.o(.rodata);
|
||||
sound/songs/se_w077.o(.rodata);
|
||||
sound/songs/midi/se_w020.o(.rodata);
|
||||
sound/songs/se_w082.o(.rodata);
|
||||
sound/songs/se_w047.o(.rodata);
|
||||
sound/songs/se_w195.o(.rodata);
|
||||
sound/songs/midi/se_w006.o(.rodata);
|
||||
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);
|
||||
sound/songs/midi/se_w014.o(.rodata);
|
||||
sound/songs/midi/se_w043.o(.rodata);
|
||||
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);
|
||||
sound/songs/mus_w_door.o(.rodata);
|
||||
sound/songs/se_card1.o(.rodata);
|
||||
sound/songs/se_card2.o(.rodata);
|
||||
sound/songs/se_card3.o(.rodata);
|
||||
sound/songs/se_bag1.o(.rodata);
|
||||
sound/songs/se_bag2.o(.rodata);
|
||||
sound/songs/se_getting.o(.rodata);
|
||||
sound/songs/se_shop.o(.rodata);
|
||||
sound/songs/se_kiteki.o(.rodata);
|
||||
sound/songs/se_help_op.o(.rodata);
|
||||
sound/songs/se_help_cl.o(.rodata);
|
||||
sound/songs/se_help_ng.o(.rodata);
|
||||
sound/songs/se_deomov.o(.rodata);
|
||||
sound/songs/se_excellent.o(.rodata);
|
||||
sound/songs/se_nawamiss.o(.rodata);
|
||||
sound/songs/midi/mus_me_asa.o(.rodata);
|
||||
sound/songs/mus_fanfa1.o(.rodata);
|
||||
sound/songs/mus_fanfa4.o(.rodata);
|
||||
sound/songs/mus_fanfa5.o(.rodata);
|
||||
sound/songs/mus_me_bachi.o(.rodata);
|
||||
sound/songs/mus_me_waza.o(.rodata);
|
||||
sound/songs/mus_me_kinomi.o(.rodata);
|
||||
sound/songs/mus_me_shinka.o(.rodata);
|
||||
sound/songs/mus_shinka.o(.rodata);
|
||||
sound/songs/mus_battle32.o(.rodata);
|
||||
sound/songs/mus_battle20.o(.rodata);
|
||||
sound/songs/mus_p_school.o(.rodata);
|
||||
sound/songs/mus_me_b_big.o(.rodata);
|
||||
sound/songs/mus_me_b_small.o(.rodata);
|
||||
sound/songs/midi/mus_me_wasure.o(.rodata);
|
||||
sound/songs/midi/mus_me_zannen.o(.rodata);
|
||||
sound/songs/midi/mus_annai.o(.rodata);
|
||||
sound/songs/midi/mus_slot.o(.rodata);
|
||||
sound/songs/midi/mus_ajito.o(.rodata);
|
||||
sound/songs/midi/mus_gym.o(.rodata);
|
||||
sound/songs/midi/mus_purin.o(.rodata);
|
||||
sound/songs/midi/mus_demo.o(.rodata);
|
||||
sound/songs/midi/mus_title.o(.rodata);
|
||||
sound/songs/midi/mus_guren.o(.rodata);
|
||||
sound/songs/midi/mus_shion.o(.rodata);
|
||||
sound/songs/midi/mus_kaihuku.o(.rodata);
|
||||
sound/songs/midi/mus_cycling.o(.rodata);
|
||||
sound/songs/midi/mus_rocket.o(.rodata);
|
||||
sound/songs/midi/mus_shoujo.o(.rodata);
|
||||
sound/songs/midi/mus_shounen.o(.rodata);
|
||||
sound/songs/midi/mus_dendou.o(.rodata);
|
||||
sound/songs/midi/mus_t_mori.o(.rodata);
|
||||
sound/songs/midi/mus_otsukimi.o(.rodata);
|
||||
sound/songs/midi/mus_pokeyashi.o(.rodata);
|
||||
sound/songs/midi/mus_ending.o(.rodata);
|
||||
sound/songs/midi/mus_load01.o(.rodata);
|
||||
sound/songs/midi/mus_opening.o(.rodata);
|
||||
sound/songs/midi/mus_load02.o(.rodata);
|
||||
sound/songs/midi/mus_load03.o(.rodata);
|
||||
sound/songs/midi/mus_champ_r.o(.rodata);
|
||||
sound/songs/midi/mus_vs_gym.o(.rodata);
|
||||
sound/songs/midi/mus_vs_tore.o(.rodata);
|
||||
sound/songs/midi/mus_vs_yasei.o(.rodata);
|
||||
sound/songs/midi/mus_vs_last.o(.rodata);
|
||||
sound/songs/midi/mus_masara.o(.rodata);
|
||||
sound/songs/midi/mus_kenkyu.o(.rodata);
|
||||
sound/songs/midi/mus_ohkido.o(.rodata);
|
||||
sound/songs/midi/mus_pokecen.o(.rodata);
|
||||
sound/songs/midi/mus_santoan.o(.rodata);
|
||||
sound/songs/midi/mus_naminori.o(.rodata);
|
||||
sound/songs/midi/mus_p_tower.o(.rodata);
|
||||
sound/songs/midi/mus_shiruhu.o(.rodata);
|
||||
sound/songs/midi/mus_hanada.o(.rodata);
|
||||
sound/songs/midi/mus_tamamusi.o(.rodata);
|
||||
sound/songs/midi/mus_win_tre.o(.rodata);
|
||||
sound/songs/midi/mus_win_yasei.o(.rodata);
|
||||
sound/songs/midi/mus_win_gym.o(.rodata);
|
||||
sound/songs/midi/mus_kuchiba.o(.rodata);
|
||||
sound/songs/midi/mus_nibi.o(.rodata);
|
||||
sound/songs/midi/mus_rival1.o(.rodata);
|
||||
sound/songs/midi/mus_rival2.o(.rodata);
|
||||
sound/songs/midi/mus_fan2.o(.rodata);
|
||||
sound/songs/midi/mus_fan5.o(.rodata);
|
||||
sound/songs/midi/mus_fan6.o(.rodata);
|
||||
sound/songs/midi/mus_me_photo.o(.rodata);
|
||||
sound/songs/midi/mus_titlerog.o(.rodata);
|
||||
sound/songs/midi/mus_get_yasei.o(.rodata);
|
||||
sound/songs/midi/mus_sousa.o(.rodata);
|
||||
sound/songs/midi/mus_sekaikan.o(.rodata);
|
||||
sound/songs/midi/mus_seibetu.o(.rodata);
|
||||
sound/songs/midi/mus_jump.o(.rodata);
|
||||
sound/songs/midi/mus_union.o(.rodata);
|
||||
sound/songs/midi/mus_network.o(.rodata);
|
||||
sound/songs/midi/mus_okurimono.o(.rodata);
|
||||
sound/songs/midi/mus_kinomikui.o(.rodata);
|
||||
sound/songs/midi/mus_nanadungeon.o(.rodata);
|
||||
sound/songs/midi/mus_oshie_tv.o(.rodata);
|
||||
sound/songs/midi/mus_nanashima.o(.rodata);
|
||||
sound/songs/midi/mus_nanaiseki.o(.rodata);
|
||||
sound/songs/midi/mus_nana123.o(.rodata);
|
||||
sound/songs/midi/mus_nana45.o(.rodata);
|
||||
sound/songs/midi/mus_nana67.o(.rodata);
|
||||
sound/songs/midi/mus_pokefue.o(.rodata);
|
||||
sound/songs/midi/mus_vs_deo.o(.rodata);
|
||||
sound/songs/midi/mus_vs_myu2.o(.rodata);
|
||||
sound/songs/midi/mus_vs_den.o(.rodata);
|
||||
sound/songs/midi/mus_exeye.o(.rodata);
|
||||
sound/songs/midi/mus_deoeye.o(.rodata);
|
||||
sound/songs/midi/mus_t_tower.o(.rodata);
|
||||
sound/songs/midi/mus_slowmasara.o(.rodata);
|
||||
sound/songs/midi/mus_tvnoize.o(.rodata);
|
||||
}
|
||||
|
||||
lib_rodata :
|
||||
ALIGN(4)
|
||||
{
|
||||
|
||||
910
songs.mk
Normal file
910
songs.mk
Normal file
@@ -0,0 +1,910 @@
|
||||
STD_REVERB = 50
|
||||
|
||||
$(MID_BUILDDIR)/%.o: $(MID_SUBDIR)/%.s
|
||||
$(AS) $(ASFLAGS) -I sound -o $@ $<
|
||||
|
||||
$(MID_SUBDIR)/mus_ajito.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G133 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_annai.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G131 -V068
|
||||
|
||||
$(MID_SUBDIR)/mus_battle20.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G119 -V080 -P1
|
||||
|
||||
$(MID_SUBDIR)/mus_battle32.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G120 -V080
|
||||
|
||||
$(MID_SUBDIR)/mus_champ_r.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G154 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_cycling.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G141 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_demo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G136 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_dendou.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G145 -V079
|
||||
|
||||
$(MID_SUBDIR)/mus_deoeye.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G184 -V079
|
||||
|
||||
$(MID_SUBDIR)/mus_dummy.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R40
|
||||
|
||||
$(MID_SUBDIR)/mus_ending.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G149 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_exeye.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G144 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_fan2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G175 -V070 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_fan5.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G178 -V077 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_fan6.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G179 -V094 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_fanfa1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_fanfa4.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_fanfa5.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_get_yasei.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G170 -V100
|
||||
|
||||
$(MID_SUBDIR)/mus_guren.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G138 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_gym.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G134 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_hanada.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G167 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_jump.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G132 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_kaihuku.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G140 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_kenkyu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G160 -V075
|
||||
|
||||
$(MID_SUBDIR)/mus_kinomikui.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G132 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_kuchiba.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G172 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_load01.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G150 -V079
|
||||
|
||||
$(MID_SUBDIR)/mus_load02.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G152 -V083
|
||||
|
||||
$(MID_SUBDIR)/mus_load03.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G153 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_masara.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G159 -V100
|
||||
|
||||
$(MID_SUBDIR)/mus_me_asa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_b_big.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_b_small.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_bachi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_kinomi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_photo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G180 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_shinka.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G026 -V080 -P1
|
||||
|
||||
$(MID_SUBDIR)/mus_me_wasure.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_waza.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_me_zannen.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G012 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_naminori.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G164 -V071
|
||||
|
||||
$(MID_SUBDIR)/mus_nana123.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G173 -V084
|
||||
|
||||
$(MID_SUBDIR)/mus_nana45.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G188 -V084
|
||||
|
||||
$(MID_SUBDIR)/mus_nana67.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G189 -V084
|
||||
|
||||
$(MID_SUBDIR)/mus_nanadungeon.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G147 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_nanaiseki.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G146 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_nanashima.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G187 -V080
|
||||
|
||||
$(MID_SUBDIR)/mus_network.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G162 -V096
|
||||
|
||||
$(MID_SUBDIR)/mus_nibi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G173 -V084
|
||||
|
||||
$(MID_SUBDIR)/mus_ohkido.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G161 -V086
|
||||
|
||||
$(MID_SUBDIR)/mus_okurimono.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G183 -V100
|
||||
|
||||
$(MID_SUBDIR)/mus_opening.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G151 -V086
|
||||
|
||||
$(MID_SUBDIR)/mus_oshie_tv.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G131 -V068
|
||||
|
||||
$(MID_SUBDIR)/mus_otsukimi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G147 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_p_school.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G081 -V100 -P1
|
||||
|
||||
$(MID_SUBDIR)/mus_p_tower.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G165 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_pokecen.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G162 -V096
|
||||
|
||||
$(MID_SUBDIR)/mus_pokefue.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G165 -V048 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_pokeyashi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G148 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_purin.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G135 -V068 -P5
|
||||
|
||||
$(MID_SUBDIR)/mus_rival1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G174 -V079
|
||||
|
||||
$(MID_SUBDIR)/mus_rival2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G174 -V079
|
||||
|
||||
$(MID_SUBDIR)/mus_rocket.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G142 -V096
|
||||
|
||||
$(MID_SUBDIR)/mus_santoan.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G163 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_seibetu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G182 -V088
|
||||
|
||||
$(MID_SUBDIR)/mus_sekaikan.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G182 -V088
|
||||
|
||||
$(MID_SUBDIR)/mus_shinka.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G026 -V080 -P1
|
||||
|
||||
$(MID_SUBDIR)/mus_shion.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G139 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_shiruhu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G166 -V076
|
||||
|
||||
$(MID_SUBDIR)/mus_shoujo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G143 -V051
|
||||
|
||||
$(MID_SUBDIR)/mus_shounen.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G144 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_slot.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G132 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_slowmasara.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G159 -V092
|
||||
|
||||
$(MID_SUBDIR)/mus_sousa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G182 -V085
|
||||
|
||||
$(MID_SUBDIR)/mus_t_mori.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G146 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_t_tower.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G134 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_tamamusi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G168 -V070
|
||||
|
||||
$(MID_SUBDIR)/mus_title.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G137 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_titlerog.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G181 -V075
|
||||
|
||||
$(MID_SUBDIR)/mus_tvnoize.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G186 -V059
|
||||
|
||||
$(MID_SUBDIR)/mus_union.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G132 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_den.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G157 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_deo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G185 -V080
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_gym.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G155 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_last.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G158 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_myu2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G157 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_tore.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G156 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_vs_yasei.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G157 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_win_gym.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G171 -V090
|
||||
|
||||
$(MID_SUBDIR)/mus_win_tre.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G169 -V089
|
||||
|
||||
$(MID_SUBDIR)/mus_win_yasei.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G170 -V090
|
||||
|
||||
$(MID_SUBDIR)/ph_choice_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_choice_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_choice_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_cloth_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_cloth_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_cloth_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_cure_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_cure_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_cure_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_dress_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_dress_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_dress_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_face_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_face_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_face_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_fleece_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_fleece_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_fleece_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_foot_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_foot_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_foot_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_goat_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_goat_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_goat_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_goose_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_goose_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_goose_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_kit_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_kit_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_kit_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_lot_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_lot_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_lot_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_mouth_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_mouth_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_mouth_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_nurse_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_nurse_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_nurse_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_price_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_price_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_price_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_strut_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_strut_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_strut_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_thought_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_thought_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_thought_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_trap_blend.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_trap_held.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/ph_trap_solo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -G130 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_a.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V095 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_ban.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_basabasa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_bidoro.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_boo.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_bowa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V070 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_bowa2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_bt_start.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_c_gaji.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_c_maku_d.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V070 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_c_maku_u.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V070 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_c_pasi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_c_pikon.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_c_syu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_card.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_curtain.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_curtain1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_dansa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_daugi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_dendou.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_doku.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_door.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V080 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_e.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_elebeta.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_esuka.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_exp.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V080 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_expmax.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V094 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_fu_zaku.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_fu_zaku2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_fu_zuzuzu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_fuusen1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_fuusen2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_fuusen3.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_hantei1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_hantei2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_hashi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V095 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_hazure.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_hi_turun.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_hinsi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P3
|
||||
|
||||
$(MID_SUBDIR)/se_i.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_jido_doa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V095 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_jihanki.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_jite_pyoko.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_jitensya.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_jyuni.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_kaidan.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V120 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_kaifuku.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_ki_gasyan.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_kon.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_kon2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_kon3.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_kon4.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_kouka_h.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_kouka_l.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_kouka_m.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_mizu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V020 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_moter.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_mu_pachi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_n.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_nageru.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_naminori.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V075 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_nigeru.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_o.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_op_basyu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_pc_login.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_pc_off.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_pc_on.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_pin.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V060 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_pinpon.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_pn_off.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_pn_on.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_poke_dead.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_reapoke.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V095 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_regi.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_bag1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_bag2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_card1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_card2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_card3.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V112 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_deomov.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V080 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_excellent.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_getting.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_help_cl.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V095 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_help_ng.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V125 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_help_op.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V096 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_kiteki.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V096 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_nawamiss.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_shop.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V080 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_rg_w_door.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_ru_bari.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_ru_gashin.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_ru_gasyan.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_ru_hyuu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_save.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V080 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_seikai.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V080 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_select.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V080 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_suikomu.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_t_ame.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V080 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_t_ame_e.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V080 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_t_kami.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P3
|
||||
|
||||
$(MID_SUBDIR)/se_t_kami2.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P3
|
||||
|
||||
$(MID_SUBDIR)/se_t_koame.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V080 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_t_koame_e.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V080 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_t_ooame.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_t_ooame_e.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_tama.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_tamago.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_tamakoro.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_tamakoro_e.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P2
|
||||
|
||||
$(MID_SUBDIR)/se_tb_kara.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V100 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_tb_kon.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_tb_start.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_tk_kasya.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_tk_warpin.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_tk_warpout.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toreeye.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V120 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_toreoff.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V110 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_toy_a.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_b.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_c.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_c1.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_d.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_dango.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_e.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_f.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_g.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_toy_kabe.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_track_door.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_track_haiki.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_track_move.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_track_stop.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_tu_saa.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_u.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_ussoki.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G129 -V077 -P5
|
||||
|
||||
$(MID_SUBDIR)/se_w003.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w004.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w006.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V095 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w007.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w010.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w011.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w013.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w013b.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w014.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w015.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V120 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w016.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w016b.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w017.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w019.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w020.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V100 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w025.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V090 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w025b.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w026.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w028.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w029.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w030.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w036.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V105 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w039.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_w043.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V110 -P4
|
||||
|
||||
$(MID_SUBDIR)/se_z_search.s: %.s: %.mid
|
||||
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -v100 -P5
|
||||
430
sound/MPlayDef.s
Normal file
430
sound/MPlayDef.s
Normal file
@@ -0,0 +1,430 @@
|
||||
.equ W00, 0x80 @ WAIT
|
||||
.equ W01, W00+1 @
|
||||
.equ W02, W00+2 @
|
||||
.equ W03, W00+3 @
|
||||
.equ W04, W00+4 @
|
||||
.equ W05, W00+5 @
|
||||
.equ W06, W00+6 @
|
||||
.equ W07, W00+7 @
|
||||
.equ W08, W00+8 @
|
||||
.equ W09, W00+9 @
|
||||
.equ W10, W00+10 @
|
||||
.equ W11, W00+11 @
|
||||
.equ W12, W00+12 @
|
||||
.equ W13, W00+13 @
|
||||
.equ W14, W00+14 @
|
||||
.equ W15, W00+15 @
|
||||
.equ W16, W00+16 @
|
||||
.equ W17, W00+17 @
|
||||
.equ W18, W00+18 @
|
||||
.equ W19, W00+19 @
|
||||
.equ W20, W00+20 @
|
||||
.equ W21, W00+21 @
|
||||
.equ W22, W00+22 @
|
||||
.equ W23, W00+23 @
|
||||
.equ W24, W00+24 @
|
||||
.equ W28, W00+25 @
|
||||
.equ W30, W00+26 @
|
||||
.equ W32, W00+27 @
|
||||
.equ W36, W00+28 @
|
||||
.equ W40, W00+29 @
|
||||
.equ W42, W00+30 @
|
||||
.equ W44, W00+31 @
|
||||
.equ W48, W00+32 @
|
||||
.equ W52, W00+33 @
|
||||
.equ W54, W00+34 @
|
||||
.equ W56, W00+35 @
|
||||
.equ W60, W00+36 @
|
||||
.equ W64, W00+37 @
|
||||
.equ W66, W00+38 @
|
||||
.equ W68, W00+39 @
|
||||
.equ W72, W00+40 @
|
||||
.equ W76, W00+41 @
|
||||
.equ W78, W00+42 @
|
||||
.equ W80, W00+43 @
|
||||
.equ W84, W00+44 @
|
||||
.equ W88, W00+45 @
|
||||
.equ W90, W00+46 @
|
||||
.equ W92, W00+47 @
|
||||
.equ W96, W00+48 @
|
||||
|
||||
.equ FINE, 0xb1 @ fine
|
||||
.equ GOTO, 0xb2 @ goto
|
||||
.equ PATT, 0xb3 @ pattern play
|
||||
.equ PEND, 0xb4 @ pattern end
|
||||
.equ REPT, 0xb5 @ repeat
|
||||
.equ MEMACC, 0xb9 @ memacc op adr dat ***lib
|
||||
.equ PRIO, 0xba @ priority
|
||||
.equ TEMPO, 0xbb @ tempo (BPM/2)
|
||||
.equ KEYSH, 0xbc @ key shift
|
||||
.equ VOICE, 0xbd @ voice #
|
||||
.equ VOL, 0xbe @ volume
|
||||
.equ PAN, 0xbf @ panpot (c_v+??)
|
||||
.equ BEND, 0xc0 @ pitch bend (c_v+??)
|
||||
.equ BENDR, 0xc1 @ bend range
|
||||
.equ LFOS, 0xc2 @ LFO speed
|
||||
.equ LFODL, 0xc3 @ LFO delay
|
||||
.equ MOD, 0xc4 @ modulation depth
|
||||
.equ MODT, 0xc5 @ modulation type
|
||||
.equ TUNE, 0xc8 @ micro tuning (c_v+??)
|
||||
|
||||
.equ XCMD, 0xcd @ extend command ***lib
|
||||
.equ xIECV, 0x08 @ imi.echo vol ***lib
|
||||
.equ xIECL, 0x09 @ imi.echo len ***lib
|
||||
|
||||
.equ EOT, 0xce @ End of Tie
|
||||
.equ TIE, 0xcf @
|
||||
.equ N01, TIE+1 @ NOTE
|
||||
.equ N02, N01+1 @
|
||||
.equ N03, N01+2 @
|
||||
.equ N04, N01+3 @
|
||||
.equ N05, N01+4 @
|
||||
.equ N06, N01+5 @
|
||||
.equ N07, N01+6 @
|
||||
.equ N08, N01+7 @
|
||||
.equ N09, N01+8 @
|
||||
.equ N10, N01+9 @
|
||||
.equ N11, N01+10 @
|
||||
.equ N12, N01+11 @
|
||||
.equ N13, N01+12 @
|
||||
.equ N14, N01+13 @
|
||||
.equ N15, N01+14 @
|
||||
.equ N16, N01+15 @
|
||||
.equ N17, N01+16 @
|
||||
.equ N18, N01+17 @
|
||||
.equ N19, N01+18 @
|
||||
.equ N20, N01+19 @
|
||||
.equ N21, N01+20 @
|
||||
.equ N22, N01+21 @
|
||||
.equ N23, N01+22 @
|
||||
.equ N24, N01+23 @
|
||||
.equ N28, N01+24 @
|
||||
.equ N30, N01+25 @
|
||||
.equ N32, N01+26 @
|
||||
.equ N36, N01+27 @
|
||||
.equ N40, N01+28 @
|
||||
.equ N42, N01+29 @
|
||||
.equ N44, N01+30 @
|
||||
.equ N48, N01+31 @
|
||||
.equ N52, N01+32 @
|
||||
.equ N54, N01+33 @
|
||||
.equ N56, N01+34 @
|
||||
.equ N60, N01+35 @
|
||||
.equ N64, N01+36 @
|
||||
.equ N66, N01+37 @
|
||||
.equ N68, N01+38 @
|
||||
.equ N72, N01+39 @
|
||||
.equ N76, N01+40 @
|
||||
.equ N78, N01+41 @
|
||||
.equ N80, N01+42 @
|
||||
.equ N84, N01+43 @
|
||||
.equ N88, N01+44 @
|
||||
.equ N90, N01+45 @
|
||||
.equ N92, N01+46 @
|
||||
.equ N96, N01+47 @
|
||||
|
||||
@ maximum value for volume
|
||||
|
||||
.equ mxv, 0x7F @
|
||||
|
||||
@ center value of PAN, BEND, TUNE
|
||||
|
||||
.equ c_v, 0x40 @ -64 ~ +63
|
||||
|
||||
@ note for N??, TIE, EOT
|
||||
|
||||
.equ CnM2, 0 @
|
||||
.equ CsM2, 1 @
|
||||
.equ DnM2, 2 @
|
||||
.equ DsM2, 3 @
|
||||
.equ EnM2, 4 @
|
||||
.equ FnM2, 5 @
|
||||
.equ FsM2, 6 @
|
||||
.equ GnM2, 7 @
|
||||
.equ GsM2, 8 @
|
||||
.equ AnM2, 9 @
|
||||
.equ AsM2, 10 @
|
||||
.equ BnM2, 11 @
|
||||
.equ CnM1, 12 @
|
||||
.equ CsM1, 13 @
|
||||
.equ DnM1, 14 @
|
||||
.equ DsM1, 15 @
|
||||
.equ EnM1, 16 @
|
||||
.equ FnM1, 17 @
|
||||
.equ FsM1, 18 @
|
||||
.equ GnM1, 19 @
|
||||
.equ GsM1, 20 @
|
||||
.equ AnM1, 21 @
|
||||
.equ AsM1, 22 @
|
||||
.equ BnM1, 23 @
|
||||
.equ Cn0, 24 @
|
||||
.equ Cs0, 25 @
|
||||
.equ Dn0, 26 @
|
||||
.equ Ds0, 27 @
|
||||
.equ En0, 28 @
|
||||
.equ Fn0, 29 @
|
||||
.equ Fs0, 30 @
|
||||
.equ Gn0, 31 @
|
||||
.equ Gs0, 32 @
|
||||
.equ An0, 33 @
|
||||
.equ As0, 34 @
|
||||
.equ Bn0, 35 @
|
||||
.equ Cn1, 36 @
|
||||
.equ Cs1, 37 @
|
||||
.equ Dn1, 38 @
|
||||
.equ Ds1, 39 @
|
||||
.equ En1, 40 @
|
||||
.equ Fn1, 41 @
|
||||
.equ Fs1, 42 @
|
||||
.equ Gn1, 43 @
|
||||
.equ Gs1, 44 @
|
||||
.equ An1, 45 @
|
||||
.equ As1, 46 @
|
||||
.equ Bn1, 47 @
|
||||
.equ Cn2, 48 @
|
||||
.equ Cs2, 49 @
|
||||
.equ Dn2, 50 @
|
||||
.equ Ds2, 51 @
|
||||
.equ En2, 52 @
|
||||
.equ Fn2, 53 @
|
||||
.equ Fs2, 54 @
|
||||
.equ Gn2, 55 @
|
||||
.equ Gs2, 56 @
|
||||
.equ An2, 57 @
|
||||
.equ As2, 58 @
|
||||
.equ Bn2, 59 @
|
||||
.equ Cn3, 60 @
|
||||
.equ Cs3, 61 @
|
||||
.equ Dn3, 62 @
|
||||
.equ Ds3, 63 @
|
||||
.equ En3, 64 @
|
||||
.equ Fn3, 65 @
|
||||
.equ Fs3, 66 @
|
||||
.equ Gn3, 67 @
|
||||
.equ Gs3, 68 @
|
||||
.equ An3, 69 @ 440Hz
|
||||
.equ As3, 70 @
|
||||
.equ Bn3, 71 @
|
||||
.equ Cn4, 72 @
|
||||
.equ Cs4, 73 @
|
||||
.equ Dn4, 74 @
|
||||
.equ Ds4, 75 @
|
||||
.equ En4, 76 @
|
||||
.equ Fn4, 77 @
|
||||
.equ Fs4, 78 @
|
||||
.equ Gn4, 79 @
|
||||
.equ Gs4, 80 @
|
||||
.equ An4, 81 @
|
||||
.equ As4, 82 @
|
||||
.equ Bn4, 83 @
|
||||
.equ Cn5, 84 @
|
||||
.equ Cs5, 85 @
|
||||
.equ Dn5, 86 @
|
||||
.equ Ds5, 87 @
|
||||
.equ En5, 88 @
|
||||
.equ Fn5, 89 @
|
||||
.equ Fs5, 90 @
|
||||
.equ Gn5, 91 @
|
||||
.equ Gs5, 92 @
|
||||
.equ An5, 93 @
|
||||
.equ As5, 94 @
|
||||
.equ Bn5, 95 @
|
||||
.equ Cn6, 96 @
|
||||
.equ Cs6, 97 @
|
||||
.equ Dn6, 98 @
|
||||
.equ Ds6, 99 @
|
||||
.equ En6, 100 @
|
||||
.equ Fn6, 101 @
|
||||
.equ Fs6, 102 @
|
||||
.equ Gn6, 103 @
|
||||
.equ Gs6, 104 @
|
||||
.equ An6, 105 @
|
||||
.equ As6, 106 @
|
||||
.equ Bn6, 107 @
|
||||
.equ Cn7, 108 @
|
||||
.equ Cs7, 109 @
|
||||
.equ Dn7, 110 @
|
||||
.equ Ds7, 111 @
|
||||
.equ En7, 112 @
|
||||
.equ Fn7, 113 @
|
||||
.equ Fs7, 114 @
|
||||
.equ Gn7, 115 @
|
||||
.equ Gs7, 116 @
|
||||
.equ An7, 117 @
|
||||
.equ As7, 118 @
|
||||
.equ Bn7, 119 @
|
||||
.equ Cn8, 120 @
|
||||
.equ Cs8, 121 @
|
||||
.equ Dn8, 122 @
|
||||
.equ Ds8, 123 @
|
||||
.equ En8, 124 @
|
||||
.equ Fn8, 125 @
|
||||
.equ Fs8, 126 @
|
||||
.equ Gn8, 127 @
|
||||
|
||||
@ velocity
|
||||
|
||||
.equ v000, 0 @
|
||||
.equ v001, 1 @
|
||||
.equ v002, 2 @
|
||||
.equ v003, 3 @
|
||||
.equ v004, 4 @
|
||||
.equ v005, 5 @
|
||||
.equ v006, 6 @
|
||||
.equ v007, 7 @
|
||||
.equ v008, 8 @
|
||||
.equ v009, 9 @
|
||||
.equ v010, 10 @
|
||||
.equ v011, 11 @
|
||||
.equ v012, 12 @
|
||||
.equ v013, 13 @
|
||||
.equ v014, 14 @
|
||||
.equ v015, 15 @
|
||||
.equ v016, 16 @
|
||||
.equ v017, 17 @
|
||||
.equ v018, 18 @
|
||||
.equ v019, 19 @
|
||||
.equ v020, 20 @
|
||||
.equ v021, 21 @
|
||||
.equ v022, 22 @
|
||||
.equ v023, 23 @
|
||||
.equ v024, 24 @
|
||||
.equ v025, 25 @
|
||||
.equ v026, 26 @
|
||||
.equ v027, 27 @
|
||||
.equ v028, 28 @
|
||||
.equ v029, 29 @
|
||||
.equ v030, 30 @
|
||||
.equ v031, 31 @
|
||||
.equ v032, 32 @
|
||||
.equ v033, 33 @
|
||||
.equ v034, 34 @
|
||||
.equ v035, 35 @
|
||||
.equ v036, 36 @
|
||||
.equ v037, 37 @
|
||||
.equ v038, 38 @
|
||||
.equ v039, 39 @
|
||||
.equ v040, 40 @
|
||||
.equ v041, 41 @
|
||||
.equ v042, 42 @
|
||||
.equ v043, 43 @
|
||||
.equ v044, 44 @
|
||||
.equ v045, 45 @
|
||||
.equ v046, 46 @
|
||||
.equ v047, 47 @
|
||||
.equ v048, 48 @
|
||||
.equ v049, 49 @
|
||||
.equ v050, 50 @
|
||||
.equ v051, 51 @
|
||||
.equ v052, 52 @
|
||||
.equ v053, 53 @
|
||||
.equ v054, 54 @
|
||||
.equ v055, 55 @
|
||||
.equ v056, 56 @
|
||||
.equ v057, 57 @
|
||||
.equ v058, 58 @
|
||||
.equ v059, 59 @
|
||||
.equ v060, 60 @
|
||||
.equ v061, 61 @
|
||||
.equ v062, 62 @
|
||||
.equ v063, 63 @
|
||||
.equ v064, 64 @
|
||||
.equ v065, 65 @
|
||||
.equ v066, 66 @
|
||||
.equ v067, 67 @
|
||||
.equ v068, 68 @
|
||||
.equ v069, 79 @
|
||||
.equ v070, 70 @
|
||||
.equ v071, 71 @
|
||||
.equ v072, 72 @
|
||||
.equ v073, 73 @
|
||||
.equ v074, 74 @
|
||||
.equ v075, 75 @
|
||||
.equ v076, 76 @
|
||||
.equ v077, 77 @
|
||||
.equ v078, 78 @
|
||||
.equ v079, 79 @
|
||||
.equ v080, 80 @
|
||||
.equ v081, 81 @
|
||||
.equ v082, 82 @
|
||||
.equ v083, 83 @
|
||||
.equ v084, 84 @
|
||||
.equ v085, 85 @
|
||||
.equ v086, 86 @
|
||||
.equ v087, 87 @
|
||||
.equ v088, 88 @
|
||||
.equ v089, 89 @
|
||||
.equ v090, 90 @
|
||||
.equ v091, 91 @
|
||||
.equ v092, 92 @
|
||||
.equ v093, 93 @
|
||||
.equ v094, 94 @
|
||||
.equ v095, 95 @
|
||||
.equ v096, 96 @
|
||||
.equ v097, 97 @
|
||||
.equ v098, 98 @
|
||||
.equ v099, 99 @
|
||||
.equ v100, 100 @
|
||||
.equ v101, 101 @
|
||||
.equ v102, 102 @
|
||||
.equ v103, 103 @
|
||||
.equ v104, 104 @
|
||||
.equ v105, 105 @
|
||||
.equ v106, 106 @
|
||||
.equ v107, 107 @
|
||||
.equ v108, 108 @
|
||||
.equ v109, 109 @
|
||||
.equ v110, 110 @
|
||||
.equ v111, 111 @
|
||||
.equ v112, 112 @
|
||||
.equ v113, 113 @
|
||||
.equ v114, 114 @
|
||||
.equ v115, 115 @
|
||||
.equ v116, 116 @
|
||||
.equ v117, 117 @
|
||||
.equ v118, 118 @
|
||||
.equ v119, 119 @
|
||||
.equ v120, 120 @
|
||||
.equ v121, 121 @
|
||||
.equ v122, 122 @
|
||||
.equ v123, 123 @
|
||||
.equ v124, 124 @
|
||||
.equ v125, 125 @
|
||||
.equ v126, 126 @
|
||||
.equ v127, 127 @
|
||||
|
||||
@ exact gate time parameter for N??
|
||||
|
||||
.equ gtp1, 1 @
|
||||
.equ gtp2, 2 @
|
||||
.equ gtp3, 3 @
|
||||
|
||||
@ parameter of MODT
|
||||
|
||||
.equ mod_vib,0 @ vibrate
|
||||
.equ mod_tre,1 @ tremolo
|
||||
.equ mod_pan,2 @ auto-panpot
|
||||
|
||||
@ parameter of MEMACC
|
||||
|
||||
.equ mem_set,0 @
|
||||
.equ mem_add,1 @
|
||||
.equ mem_sub,2 @
|
||||
.equ mem_mem_set,3 @
|
||||
.equ mem_mem_add,4 @
|
||||
.equ mem_mem_sub,5 @
|
||||
.equ mem_beq,6 @
|
||||
.equ mem_bne,7 @
|
||||
.equ mem_bhi,8 @
|
||||
.equ mem_bhs,9 @
|
||||
.equ mem_bls,10 @
|
||||
.equ mem_blo,11 @
|
||||
.equ mem_mem_beq,12 @
|
||||
.equ mem_mem_bne,13 @
|
||||
.equ mem_mem_bhi,14 @
|
||||
.equ mem_mem_bhs,15 @
|
||||
.equ mem_mem_bls,16 @
|
||||
.equ mem_mem_blo,17 @
|
||||
|
||||
.equ reverb_set,0x80 @ SOUND_MODE_REVERB_SET
|
||||
.equ PAM, PAN @
|
||||
@@ -1,351 +1,351 @@
|
||||
gSongTable:: @ 84A32CC
|
||||
song gSong_86B5640, 0, 0
|
||||
song gSong_86B5660, 1, 1
|
||||
song gSong_86B568C, 1, 1
|
||||
song gSong_86B56B0, 1, 1
|
||||
song gSong_86B56F4, 1, 1
|
||||
song gSong_86B5720, 2, 2
|
||||
song gSong_86B573C, 1, 1
|
||||
song gSong_86B5758, 2, 2
|
||||
song gSong_86B5774, 1, 1
|
||||
song gSong_86B57A8, 1, 1
|
||||
song gSong_86B57CC, 1, 1
|
||||
song gSong_86B57E8, 1, 1
|
||||
song gSong_86B5814, 1, 1
|
||||
song gSong_86B5860, 1, 1
|
||||
song gSong_86B58DC, 1, 1
|
||||
song gSong_86B5930, 1, 1
|
||||
song gSong_86B5984, 1, 1
|
||||
song gSong_86B59D4, 1, 1
|
||||
song gSong_86B59F0, 1, 1
|
||||
song gSong_86B5A44, 1, 1
|
||||
song gSong_86B5A8C, 1, 1
|
||||
song gSong_86B5AB8, 1, 1
|
||||
song gSong_86B5ADC, 1, 1
|
||||
song gSong_86B5B00, 1, 1
|
||||
song gSong_86B5B84, 2, 2
|
||||
song gSong_86B5BB0, 1, 1
|
||||
song gSong_86B5BE0, 1, 1
|
||||
song gSong_86B5D60, 1, 1
|
||||
song gSong_86B5D84, 1, 1
|
||||
song gSong_86B5DA8, 1, 1
|
||||
song gSong_86B5DCC, 1, 1
|
||||
song gSong_86B5DFC, 1, 1
|
||||
song gSong_86B5E20, 1, 1
|
||||
song gSong_86B5E6C, 1, 1
|
||||
song gSong_86B5EA4, 1, 1
|
||||
song gSong_86B5EF8, 1, 1
|
||||
song gSong_86B5F34, 1, 1
|
||||
song gSong_86B5F8C, 1, 1
|
||||
song gSong_86B5FD0, 2, 2
|
||||
song gSong_86B600C, 1, 1
|
||||
song gSong_86B604C, 1, 1
|
||||
song gSong_86B6078, 1, 1
|
||||
song gSong_86B60B4, 1, 1
|
||||
song gSong_86B6160, 1, 1
|
||||
song gSong_86B61D8, 1, 1
|
||||
song gSong_86B6204, 2, 2
|
||||
song gSong_86B6238, 1, 1
|
||||
song gSong_86B6264, 2, 2
|
||||
song gSong_86B62A8, 1, 1
|
||||
song gSong_86B62D4, 1, 1
|
||||
song gSong_86B6300, 1, 1
|
||||
song gSong_86B632C, 1, 1
|
||||
song gSong_86B6358, 1, 1
|
||||
song gSong_86B63AC, 2, 2
|
||||
song gSong_86B63F0, 1, 1
|
||||
song gSong_86B6424, 2, 2
|
||||
song gSong_86B645C, 2, 2
|
||||
song gSong_86B6494, 2, 2
|
||||
song gSong_86B64CC, 2, 2
|
||||
song gSong_86B6504, 2, 2
|
||||
song gSong_86B653C, 2, 2
|
||||
song gSong_86B6574, 2, 2
|
||||
song gSong_86B65AC, 2, 2
|
||||
song gSong_86B65E0, 2, 2
|
||||
song gSong_86B6604, 2, 2
|
||||
song gSong_86B6650, 1, 1
|
||||
song gSong_86B66B0, 1, 1
|
||||
song gSong_86B66E4, 2, 2
|
||||
song gSong_86B6714, 2, 2
|
||||
song gSong_86B674C, 2, 2
|
||||
song gSong_86B6790, 2, 2
|
||||
song gSong_86B67C0, 2, 2
|
||||
song gSong_86B67E8, 1, 1
|
||||
song gSong_86B6850, 1, 1
|
||||
song gSong_86B688C, 3, 3
|
||||
song gSong_86B68CC, 3, 3
|
||||
song gSong_86B6908, 3, 3
|
||||
song gSong_86B6948, 3, 3
|
||||
song gSong_86B6984, 3, 3
|
||||
song gSong_86B69C4, 3, 3
|
||||
song gSong_86B6A2C, 1, 1
|
||||
song gSong_86B6A7C, 1, 1
|
||||
song gSong_86B6AB8, 1, 1
|
||||
song gSong_86B6AE8, 3, 3
|
||||
song gSong_86B6B34, 1, 1
|
||||
song gSong_86B6B58, 2, 2
|
||||
song gSong_86B6BAC, 2, 2
|
||||
song gSong_86B6C40, 1, 1
|
||||
song gSong_86B6C7C, 1, 1
|
||||
song gSong_86B6CA0, 1, 1
|
||||
song gSong_86B6D04, 1, 1
|
||||
song gSong_86B6D6C, 1, 1
|
||||
song gSong_86B6D94, 1, 1
|
||||
song gSong_86B6DC8, 1, 1
|
||||
song gSong_86B6DF4, 1, 1
|
||||
song gSong_86B6E70, 1, 1
|
||||
song gSong_86B6F30, 1, 1
|
||||
song gSong_86B7018, 1, 1
|
||||
song gSong_86B7130, 1, 1
|
||||
song gSong_86B7154, 1, 1
|
||||
song gSong_86B7268, 1, 1
|
||||
song gSong_86B7294, 1, 1
|
||||
song gSong_86B72C8, 1, 1
|
||||
song gSong_86B732C, 1, 1
|
||||
song gSong_86B7394, 1, 1
|
||||
song gSong_86B7590, 1, 1
|
||||
song gSong_86B761C, 1, 1
|
||||
song gSong_86B766C, 1, 1
|
||||
song gSong_86B7698, 1, 1
|
||||
song gSong_86B76B8, 2, 2
|
||||
song gSong_86B76F4, 1, 1
|
||||
song gSong_86B7788, 2, 2
|
||||
song gSong_86B77F4, 1, 1
|
||||
song gSong_86B783C, 1, 1
|
||||
song gSong_86B7900, 1, 1
|
||||
song gSong_86B7954, 1, 1
|
||||
song gSong_86B79D4, 1, 1
|
||||
song gSong_86B7A0C, 1, 1
|
||||
song gSong_86B7A40, 1, 1
|
||||
song gSong_86B7A80, 1, 1
|
||||
song gSong_86B7AF8, 1, 1
|
||||
song gSong_86B7B78, 1, 1
|
||||
song gSong_86B7BD0, 1, 1
|
||||
song gSong_86B7C74, 1, 1
|
||||
song gSong_86B7CC0, 1, 1
|
||||
song gSong_86B7D3C, 2, 2
|
||||
song gSong_86B7D88, 2, 2
|
||||
song gSong_86B7DBC, 1, 1
|
||||
song gSong_86B7E08, 1, 1
|
||||
song gSong_86B7E68, 1, 1
|
||||
song gSong_86B7EB4, 1, 1
|
||||
song gSong_86B7F38, 1, 1
|
||||
song gSong_86B7F8C, 1, 1
|
||||
song gSong_86B8058, 1, 1
|
||||
song gSong_86B80F8, 1, 1
|
||||
song gSong_86B8134, 1, 1
|
||||
song gSong_86B8180, 1, 1
|
||||
song gSong_86B8204, 1, 1
|
||||
song gSong_86B8274, 1, 1
|
||||
song gSong_86B8348, 1, 1
|
||||
song gSong_86B83EC, 1, 1
|
||||
song gSong_86B845C, 1, 1
|
||||
song gSong_86B84D0, 1, 1
|
||||
song gSong_86B85B0, 2, 2
|
||||
song gSong_86B85EC, 1, 1
|
||||
song gSong_86B8654, 2, 2
|
||||
song gSong_86B86D0, 1, 1
|
||||
song gSong_86B871C, 1, 1
|
||||
song gSong_86B8764, 1, 1
|
||||
song gSong_86B87CC, 1, 1
|
||||
song gSong_86B8868, 1, 1
|
||||
song gSong_86B89CC, 1, 1
|
||||
song gSong_86B8A34, 1, 1
|
||||
song gSong_86B8A78, 1, 1
|
||||
song gSong_86B8AF4, 1, 1
|
||||
song gSong_86B8B60, 1, 1
|
||||
song gSong_86B8BE0, 1, 1
|
||||
song gSong_86B8C60, 1, 1
|
||||
song gSong_86B8CFC, 1, 1
|
||||
song gSong_86B8D48, 1, 1
|
||||
song gSong_86B8D88, 2, 2
|
||||
song gSong_86B8E00, 1, 1
|
||||
song gSong_86B8E3C, 1, 1
|
||||
song gSong_86B8E94, 2, 2
|
||||
song gSong_86B8F5C, 1, 1
|
||||
song gSong_86B9050, 1, 1
|
||||
song gSong_86B9160, 1, 1
|
||||
song gSong_86B91E8, 1, 1
|
||||
song gSong_86B9230, 1, 1
|
||||
song gSong_86B9290, 1, 1
|
||||
song gSong_86B92DC, 1, 1
|
||||
song gSong_86B9364, 1, 1
|
||||
song gSong_86B9420, 1, 1
|
||||
song gSong_86B9478, 1, 1
|
||||
song gSong_86B94F4, 1, 1
|
||||
song gSong_86B95BC, 1, 1
|
||||
song gSong_86B9678, 1, 1
|
||||
song gSong_86B9764, 1, 1
|
||||
song gSong_86B97A4, 1, 1
|
||||
song gSong_86B9800, 1, 1
|
||||
song gSong_86B9838, 1, 1
|
||||
song gSong_86B98EC, 1, 1
|
||||
song gSong_86B998C, 1, 1
|
||||
song gSong_86B99F4, 1, 1
|
||||
song gSong_86B9B18, 1, 1
|
||||
song gSong_86B9B94, 1, 1
|
||||
song gSong_86B9BF0, 1, 1
|
||||
song gSong_86B9C28, 1, 1
|
||||
song gSong_86B9C78, 1, 1
|
||||
song gSong_86B9D04, 1, 1
|
||||
song gSong_86B9D68, 1, 1
|
||||
song gSong_86B9DE0, 1, 1
|
||||
song gSong_86B9E48, 1, 1
|
||||
song gSong_86B9F9C, 1, 1
|
||||
song gSong_86BA070, 2, 2
|
||||
song gSong_86BA180, 1, 1
|
||||
song gSong_86BA264, 1, 1
|
||||
song gSong_86BA344, 1, 1
|
||||
song gSong_86BA390, 1, 1
|
||||
song gSong_86BA41C, 1, 1
|
||||
song gSong_86BA5AC, 1, 1
|
||||
song gSong_86BA74C, 1, 1
|
||||
song gSong_86BA7BC, 2, 2
|
||||
song gSong_86BA80C, 1, 1
|
||||
song gSong_86BA930, 1, 1
|
||||
song gSong_86BA9B0, 1, 1
|
||||
song gSong_86BAAA0, 1, 1
|
||||
song gSong_86BAB04, 1, 1
|
||||
song gSong_86BAB60, 1, 1
|
||||
song gSong_86BAC14, 1, 1
|
||||
song gSong_86BAE10, 1, 1
|
||||
song gSong_86BAF30, 1, 1
|
||||
song gSong_86BB0A0, 1, 1
|
||||
song gSong_86BB110, 1, 1
|
||||
song gSong_86BB1A8, 1, 1
|
||||
song gSong_86BB1E0, 1, 1
|
||||
song gSong_86BB2B8, 2, 2
|
||||
song gSong_86BB390, 1, 1
|
||||
song gSong_86BB43C, 1, 1
|
||||
song gSong_86BB4D4, 1, 1
|
||||
song gSong_86BB56C, 1, 1
|
||||
song gSong_86BB614, 1, 1
|
||||
song gSong_86BB660, 1, 1
|
||||
song gSong_86BB75C, 1, 1
|
||||
song gSong_86BB7F0, 1, 1
|
||||
song gSong_86BB854, 1, 1
|
||||
song gSong_86BB8F0, 1, 1
|
||||
song gSong_86BBAF8, 2, 2
|
||||
song gSong_86BBBF4, 2, 2
|
||||
song gSong_86BBCE4, 1, 1
|
||||
song gSong_86BBD68, 1, 1
|
||||
song gSong_86BBDDC, 2, 2
|
||||
song gSong_86BBF5C, 1, 1
|
||||
song gSong_86BC060, 1, 1
|
||||
song gSong_86BC0C0, 1, 1
|
||||
song gSong_86BC130, 1, 1
|
||||
song gSong_86BC24C, 2, 2
|
||||
song gSong_86BC2F0, 1, 1
|
||||
song gSong_86BC460, 1, 1
|
||||
song gSong_86BC594, 1, 1
|
||||
song gSong_86BC618, 1, 1
|
||||
song gSong_86BC670, 1, 1
|
||||
song gSong_86BC6A0, 1, 1
|
||||
song gSong_86BC6D8, 1, 1
|
||||
song gSong_86BC764, 1, 1
|
||||
song gSong_86BC79C, 1, 1
|
||||
song gSong_86BC7E0, 1, 1
|
||||
song gSong_86BC820, 1, 1
|
||||
song gSong_86BC848, 1, 1
|
||||
song gSong_86BC900, 1, 1
|
||||
song gSong_86BC974, 1, 1
|
||||
song gSong_86BC9E0, 1, 1
|
||||
song gSong_86BCA28, 1, 1
|
||||
song gSong_86BCB08, 1, 1
|
||||
song gSong_86BCBC8, 1, 1
|
||||
song gSong_86BCBFC, 1, 1
|
||||
song gSong_86BCCB8, 2, 2
|
||||
song gSong_86BCD98, 2, 2
|
||||
song gSong_86BCEE4, 2, 2
|
||||
song gSong_86BD080, 2, 2
|
||||
song gSong_86BD358, 2, 2
|
||||
song gSong_86BD4E4, 2, 2
|
||||
song gSong_86BD5BC, 2, 2
|
||||
song gSong_86BD628, 2, 2
|
||||
song gSong_86BDB98, 0, 0
|
||||
song gSong_86BE9C4, 0, 0
|
||||
song gSong_86BFA68, 0, 0
|
||||
song gSong_86BFDC0, 0, 0
|
||||
song gSong_86BFFE0, 2, 2
|
||||
song gSong_86C0120, 2, 2
|
||||
song gSong_86C0204, 2, 2
|
||||
song gSong_86C02FC, 2, 2
|
||||
song gSong_86C07E4, 0, 0
|
||||
song gSong_86C1720, 0, 0
|
||||
song gSong_86C3344, 0, 0
|
||||
song gSong_86C3D50, 0, 0
|
||||
song gSong_86C3FE8, 2, 2
|
||||
song gSong_86C4AE8, 0, 0
|
||||
song gSong_86C5B5C, 0, 0
|
||||
song gSong_86C6A30, 0, 0
|
||||
song gSong_86C775C, 0, 0
|
||||
song gSong_86C77B0, 0, 0
|
||||
song gSong_86C83C4, 0, 0
|
||||
song gSong_86C8784, 0, 0
|
||||
song gSong_86C8B3C, 0, 0
|
||||
song gSong_86C8FE4, 0, 0
|
||||
song gSong_86C9AA0, 0, 0
|
||||
song gSong_86CACB8, 0, 0
|
||||
song gSong_86CC108, 0, 0
|
||||
song gSong_86CD344, 0, 0
|
||||
song gSong_86D1354, 0, 0
|
||||
song gSong_86D1DDC, 0, 0
|
||||
song gSong_86D264C, 0, 0
|
||||
song gSong_86D3588, 0, 0
|
||||
song gSong_86D42FC, 0, 0
|
||||
song gSong_86D503C, 0, 0
|
||||
song gSong_86D6B20, 0, 0
|
||||
song gSong_86D9694, 0, 0
|
||||
song gSong_86DA810, 0, 0
|
||||
song gSong_86DCFE0, 0, 0
|
||||
song gSong_86DD844, 0, 0
|
||||
song gSong_86DDFE0, 0, 0
|
||||
song gSong_86DE96C, 0, 0
|
||||
song gSong_86DF3CC, 0, 0
|
||||
song gSong_86E0670, 0, 0
|
||||
song gSong_86E0FE8, 0, 0
|
||||
song gSong_86E18B4, 0, 0
|
||||
song gSong_86E2FA8, 0, 0
|
||||
song gSong_86E39E4, 0, 0
|
||||
song gSong_86E4564, 0, 0
|
||||
song gSong_86E56E4, 0, 0
|
||||
song gSong_86E5C1C, 0, 0
|
||||
song gSong_86E6B0C, 0, 0
|
||||
song gSong_86E7920, 0, 0
|
||||
song gSong_86E8810, 0, 0
|
||||
song gSong_86E904C, 0, 0
|
||||
song gSong_86E9820, 0, 0
|
||||
song gSong_86E9A20, 2, 2
|
||||
song gSong_86E9C20, 2, 2
|
||||
song gSong_86E9F90, 2, 2
|
||||
song gSong_86EA100, 2, 2
|
||||
song gSong_86EAA04, 0, 0
|
||||
song gSong_86EAE3C, 0, 0
|
||||
song gSong_86EAEC8, 0, 0
|
||||
song gSong_86EB098, 0, 0
|
||||
song gSong_86EB154, 0, 0
|
||||
song gSong_86EC0C8, 0, 0
|
||||
song gSong_86ED044, 0, 0
|
||||
song gSong_86EDAA0, 0, 0
|
||||
song gSong_86EDF20, 0, 0
|
||||
song gSong_86EEE4C, 0, 0
|
||||
song gSong_86F0250, 0, 0
|
||||
song gSong_86F0740, 0, 0
|
||||
song gSong_86F1600, 0, 0
|
||||
song gSong_86F281C, 0, 0
|
||||
song gSong_86F3710, 0, 0
|
||||
song gSong_86F4738, 0, 0
|
||||
song gSong_86F5668, 0, 0
|
||||
song gSong_86F582C, 2, 2
|
||||
song gSong_86F79B4, 0, 0
|
||||
song gSong_86F8B2C, 0, 0
|
||||
song gSong_86F9DE4, 0, 0
|
||||
song gSong_86FA228, 0, 0
|
||||
song gSong_86FAB70, 0, 0
|
||||
song gSong_86FB570, 0, 0
|
||||
song gSong_86FBDB0, 0, 0
|
||||
song gSong_86FBE8C, 0, 0
|
||||
song mus_dummy, 0, 0
|
||||
song se_kaifuku, 1, 1
|
||||
song se_pc_login, 1, 1
|
||||
song se_pc_off, 1, 1
|
||||
song se_pc_on, 1, 1
|
||||
song se_select, 2, 2
|
||||
song se_win_open, 1, 1
|
||||
song se_wall_hit, 2, 2
|
||||
song se_door, 1, 1
|
||||
song se_kaidan, 1, 1
|
||||
song se_dansa, 1, 1
|
||||
song se_jitensya, 1, 1
|
||||
song se_kouka_l, 1, 1
|
||||
song se_kouka_m, 1, 1
|
||||
song se_kouka_h, 1, 1
|
||||
song se_bowa2, 1, 1
|
||||
song se_poke_dead, 1, 1
|
||||
song se_nigeru, 1, 1
|
||||
song se_jido_doa, 1, 1
|
||||
song se_naminori, 1, 1
|
||||
song se_ban, 1, 1
|
||||
song se_pin, 1, 1
|
||||
song se_boo, 1, 1
|
||||
song se_bowa, 1, 1
|
||||
song se_jyuni, 2, 2
|
||||
song se_seikai, 1, 1
|
||||
song se_hazure, 1, 1
|
||||
song se_exp, 1, 1
|
||||
song se_jite_pyoko, 1, 1
|
||||
song se_mu_pachi, 1, 1
|
||||
song se_tk_kasya, 1, 1
|
||||
song se_fu_zaku, 1, 1
|
||||
song se_fu_zaku2, 1, 1
|
||||
song se_fu_zuzuzu, 1, 1
|
||||
song se_ru_gashin, 1, 1
|
||||
song se_ru_gasyan, 1, 1
|
||||
song se_ru_bari, 1, 1
|
||||
song se_ru_hyuu, 1, 1
|
||||
song se_ki_gasyan, 2, 2
|
||||
song se_tk_warpin, 1, 1
|
||||
song se_tk_warpout, 1, 1
|
||||
song se_tu_saa, 1, 1
|
||||
song se_hi_turun, 1, 1
|
||||
song se_track_move, 1, 1
|
||||
song se_track_stop, 1, 1
|
||||
song se_track_haiki, 2, 2
|
||||
song se_track_door, 1, 1
|
||||
song se_moter, 2, 2
|
||||
song se_save, 1, 1
|
||||
song se_kon, 1, 1
|
||||
song se_kon2, 1, 1
|
||||
song se_kon3, 1, 1
|
||||
song se_kon4, 1, 1
|
||||
song se_suikomu, 2, 2
|
||||
song se_nageru, 1, 1
|
||||
song se_toy_c, 2, 2
|
||||
song se_toy_d, 2, 2
|
||||
song se_toy_e, 2, 2
|
||||
song se_toy_f, 2, 2
|
||||
song se_toy_g, 2, 2
|
||||
song se_toy_a, 2, 2
|
||||
song se_toy_b, 2, 2
|
||||
song se_toy_c1, 2, 2
|
||||
song se_mizu, 2, 2
|
||||
song se_hashi, 2, 2
|
||||
song se_daugi, 1, 1
|
||||
song se_pinpon, 1, 1
|
||||
song se_fuusen1, 2, 2
|
||||
song se_fuusen2, 2, 2
|
||||
song se_fuusen3, 2, 2
|
||||
song se_toy_kabe, 2, 2
|
||||
song se_toy_dango, 2, 2
|
||||
song se_doku, 1, 1
|
||||
song se_esuka, 1, 1
|
||||
song se_t_ame, 3, 3
|
||||
song se_t_ame_e, 3, 3
|
||||
song se_t_ooame, 3, 3
|
||||
song se_t_ooame_e, 3, 3
|
||||
song se_t_koame, 3, 3
|
||||
song se_t_koame_e, 3, 3
|
||||
song se_t_kami, 1, 1
|
||||
song se_t_kami2, 1, 1
|
||||
song se_elebeta, 1, 1
|
||||
song se_hinsi, 3, 3
|
||||
song se_expmax, 1, 1
|
||||
song se_tamakoro, 2, 2
|
||||
song se_tamakoro_e, 2, 2
|
||||
song se_basabasa, 1, 1
|
||||
song se_regi, 1, 1
|
||||
song se_c_gaji, 1, 1
|
||||
song se_c_maku_u, 1, 1
|
||||
song se_c_maku_d, 1, 1
|
||||
song se_c_pasi, 1, 1
|
||||
song se_c_syu, 1, 1
|
||||
song se_c_pikon, 1, 1
|
||||
song se_reapoke, 1, 1
|
||||
song se_op_basyu, 1, 1
|
||||
song se_bt_start, 1, 1
|
||||
song se_dendou, 1, 1
|
||||
song se_jihanki, 1, 1
|
||||
song se_tama, 1, 1
|
||||
song se_z_scroll, 1, 1
|
||||
song se_z_page, 1, 1
|
||||
song se_pn_on, 1, 1
|
||||
song se_pn_off, 1, 1
|
||||
song se_z_search, 1, 1
|
||||
song se_tamago, 1, 1
|
||||
song se_tb_start, 1, 1
|
||||
song se_tb_kon, 1, 1
|
||||
song se_tb_kara, 2, 2
|
||||
song se_bidoro, 1, 1
|
||||
song se_w085, 2, 2
|
||||
song se_w085b, 1, 1
|
||||
song se_w231, 1, 1
|
||||
song se_w171, 1, 1
|
||||
song se_w233, 1, 1
|
||||
song se_w233b, 1, 1
|
||||
song se_w145, 1, 1
|
||||
song se_w145b, 1, 1
|
||||
song se_w145c, 1, 1
|
||||
song se_w240, 1, 1
|
||||
song se_w015, 1, 1
|
||||
song se_w081, 1, 1
|
||||
song se_w081b, 1, 1
|
||||
song se_w088, 1, 1
|
||||
song se_w016, 2, 2
|
||||
song se_w016b, 2, 2
|
||||
song se_w003, 1, 1
|
||||
song se_w104, 1, 1
|
||||
song se_w013, 1, 1
|
||||
song se_w196, 1, 1
|
||||
song se_w086, 1, 1
|
||||
song se_w004, 1, 1
|
||||
song se_w025, 1, 1
|
||||
song se_w025b, 1, 1
|
||||
song se_w152, 1, 1
|
||||
song se_w026, 1, 1
|
||||
song se_w172, 1, 1
|
||||
song se_w172b, 1, 1
|
||||
song se_w053, 1, 1
|
||||
song se_w007, 1, 1
|
||||
song se_w092, 1, 1
|
||||
song se_w221, 1, 1
|
||||
song se_w221b, 2, 2
|
||||
song se_w052, 1, 1
|
||||
song se_w036, 2, 2
|
||||
song se_w059, 1, 1
|
||||
song se_w059b, 1, 1
|
||||
song se_w010, 1, 1
|
||||
song se_w011, 1, 1
|
||||
song se_w017, 1, 1
|
||||
song se_w019, 1, 1
|
||||
song se_w028, 1, 1
|
||||
song se_w013b, 1, 1
|
||||
song se_w044, 1, 1
|
||||
song se_w029, 1, 1
|
||||
song se_w057, 1, 1
|
||||
song se_w056, 1, 1
|
||||
song se_w250, 1, 1
|
||||
song se_w030, 1, 1
|
||||
song se_w039, 2, 2
|
||||
song se_w054, 1, 1
|
||||
song se_w077, 1, 1
|
||||
song se_w020, 2, 2
|
||||
song se_w082, 1, 1
|
||||
song se_w047, 1, 1
|
||||
song se_w195, 1, 1
|
||||
song se_w006, 1, 1
|
||||
song se_w091, 1, 1
|
||||
song se_w146, 1, 1
|
||||
song se_w120, 1, 1
|
||||
song se_w153, 1, 1
|
||||
song se_w071b, 1, 1
|
||||
song se_w071, 1, 1
|
||||
song se_w103, 1, 1
|
||||
song se_w062, 1, 1
|
||||
song se_w062b, 1, 1
|
||||
song se_w048, 1, 1
|
||||
song se_w187, 1, 1
|
||||
song se_w118, 1, 1
|
||||
song se_w155, 1, 1
|
||||
song se_w122, 1, 1
|
||||
song se_w060, 1, 1
|
||||
song se_w185, 1, 1
|
||||
song se_w014, 1, 1
|
||||
song se_w043, 1, 1
|
||||
song se_w207, 1, 1
|
||||
song se_w207b, 1, 1
|
||||
song se_w215, 1, 1
|
||||
song se_w109, 1, 1
|
||||
song se_w173, 1, 1
|
||||
song se_w280, 1, 1
|
||||
song se_w202, 1, 1
|
||||
song se_w060b, 1, 1
|
||||
song se_w076, 2, 2
|
||||
song se_w080, 1, 1
|
||||
song se_w100, 1, 1
|
||||
song se_w107, 1, 1
|
||||
song se_w166, 1, 1
|
||||
song se_w129, 1, 1
|
||||
song se_w115, 1, 1
|
||||
song se_w112, 1, 1
|
||||
song se_w197, 2, 2
|
||||
song se_w199, 1, 1
|
||||
song se_w236, 1, 1
|
||||
song se_w204, 1, 1
|
||||
song se_w268, 1, 1
|
||||
song se_w070, 1, 1
|
||||
song se_w063, 1, 1
|
||||
song se_w127, 1, 1
|
||||
song se_w179, 1, 1
|
||||
song se_w151, 1, 1
|
||||
song se_w201, 1, 1
|
||||
song se_w161, 1, 1
|
||||
song se_w161b, 1, 1
|
||||
song se_w227, 1, 1
|
||||
song se_w227b, 2, 2
|
||||
song se_w226, 1, 1
|
||||
song se_w208, 1, 1
|
||||
song se_w213, 1, 1
|
||||
song se_w213b, 1, 1
|
||||
song se_w234, 1, 1
|
||||
song se_w260, 1, 1
|
||||
song se_w328, 1, 1
|
||||
song se_w320, 1, 1
|
||||
song se_w255, 1, 1
|
||||
song se_w291, 1, 1
|
||||
song se_w089, 2, 2
|
||||
song se_w239, 2, 2
|
||||
song se_w230, 1, 1
|
||||
song se_w281, 1, 1
|
||||
song se_w327, 2, 2
|
||||
song se_w287, 1, 1
|
||||
song se_w257, 1, 1
|
||||
song se_w253, 1, 1
|
||||
song se_w258, 1, 1
|
||||
song se_w322, 2, 2
|
||||
song se_w298, 1, 1
|
||||
song se_w287b, 1, 1
|
||||
song se_w114, 1, 1
|
||||
song se_w063b, 1, 1
|
||||
song mus_w_door, 1, 1
|
||||
song se_card1, 1, 1
|
||||
song se_card2, 1, 1
|
||||
song se_card3, 1, 1
|
||||
song se_bag1, 1, 1
|
||||
song se_bag2, 1, 1
|
||||
song se_getting, 1, 1
|
||||
song se_shop, 1, 1
|
||||
song se_kiteki, 1, 1
|
||||
song se_help_op, 1, 1
|
||||
song se_help_cl, 1, 1
|
||||
song se_help_ng, 1, 1
|
||||
song se_deomov, 1, 1
|
||||
song se_excellent, 1, 1
|
||||
song se_nawamiss, 1, 1
|
||||
song mus_me_asa, 2, 2
|
||||
song mus_fanfa1, 2, 2
|
||||
song mus_fanfa4, 2, 2
|
||||
song mus_fanfa5, 2, 2
|
||||
song mus_me_bachi, 2, 2
|
||||
song mus_me_waza, 2, 2
|
||||
song mus_me_kinomi, 2, 2
|
||||
song mus_me_shinka, 2, 2
|
||||
song mus_shinka, 0, 0
|
||||
song mus_battle32, 0, 0
|
||||
song mus_battle20, 0, 0
|
||||
song mus_p_school, 0, 0
|
||||
song mus_me_b_big, 2, 2
|
||||
song mus_me_b_small, 2, 2
|
||||
song mus_me_wasure, 2, 2
|
||||
song mus_me_zannen, 2, 2
|
||||
song mus_annai, 0, 0
|
||||
song mus_slot, 0, 0
|
||||
song mus_ajito, 0, 0
|
||||
song mus_gym, 0, 0
|
||||
song mus_purin, 2, 2
|
||||
song mus_demo, 0, 0
|
||||
song mus_title, 0, 0
|
||||
song mus_guren, 0, 0
|
||||
song mus_shion, 0, 0
|
||||
song mus_kaihuku, 0, 0
|
||||
song mus_cycling, 0, 0
|
||||
song mus_rocket, 0, 0
|
||||
song mus_shoujo, 0, 0
|
||||
song mus_shounen, 0, 0
|
||||
song mus_dendou, 0, 0
|
||||
song mus_t_mori, 0, 0
|
||||
song mus_otsukimi, 0, 0
|
||||
song mus_pokeyashi, 0, 0
|
||||
song mus_ending, 0, 0
|
||||
song mus_load01, 0, 0
|
||||
song mus_opening, 0, 0
|
||||
song mus_load02, 0, 0
|
||||
song mus_load03, 0, 0
|
||||
song mus_champ_r, 0, 0
|
||||
song mus_vs_gym, 0, 0
|
||||
song mus_vs_tore, 0, 0
|
||||
song mus_vs_yasei, 0, 0
|
||||
song mus_vs_last, 0, 0
|
||||
song mus_masara, 0, 0
|
||||
song mus_kenkyu, 0, 0
|
||||
song mus_ohkido, 0, 0
|
||||
song mus_pokecen, 0, 0
|
||||
song mus_santoan, 0, 0
|
||||
song mus_naminori, 0, 0
|
||||
song mus_p_tower, 0, 0
|
||||
song mus_shiruhu, 0, 0
|
||||
song mus_hanada, 0, 0
|
||||
song mus_tamamusi, 0, 0
|
||||
song mus_win_tre, 0, 0
|
||||
song mus_win_yasei, 0, 0
|
||||
song mus_win_gym, 0, 0
|
||||
song mus_kuchiba, 0, 0
|
||||
song mus_nibi, 0, 0
|
||||
song mus_rival1, 0, 0
|
||||
song mus_rival2, 0, 0
|
||||
song mus_fan2, 2, 2
|
||||
song mus_fan5, 2, 2
|
||||
song mus_fan6, 2, 2
|
||||
song mus_me_photo, 2, 2
|
||||
song mus_titlerog, 0, 0
|
||||
song mus_get_yasei, 0, 0
|
||||
song mus_sousa, 0, 0
|
||||
song mus_sekaikan, 0, 0
|
||||
song mus_seibetu, 0, 0
|
||||
song mus_jump, 0, 0
|
||||
song mus_union, 0, 0
|
||||
song mus_network, 0, 0
|
||||
song mus_okurimono, 0, 0
|
||||
song mus_kinomikui, 0, 0
|
||||
song mus_nanadungeon, 0, 0
|
||||
song mus_oshie_tv, 0, 0
|
||||
song mus_nanashima, 0, 0
|
||||
song mus_nanaiseki, 0, 0
|
||||
song mus_nana123, 0, 0
|
||||
song mus_nana45, 0, 0
|
||||
song mus_nana67, 0, 0
|
||||
song mus_pokefue, 2, 2
|
||||
song mus_vs_deo, 0, 0
|
||||
song mus_vs_myu2, 0, 0
|
||||
song mus_vs_den, 0, 0
|
||||
song mus_exeye, 0, 0
|
||||
song mus_deoeye, 0, 0
|
||||
song mus_t_tower, 0, 0
|
||||
song mus_slowmasara, 0, 0
|
||||
song mus_tvnoize, 0, 0
|
||||
|
||||
dummy_song_header: @ 84A3DA4
|
||||
.byte 0, 0, 0, 0
|
||||
|
||||
BIN
sound/songs/midi/mus_ajito.mid
Normal file
BIN
sound/songs/midi/mus_ajito.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_annai.mid
Normal file
BIN
sound/songs/midi/mus_annai.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_champ_r.mid
Normal file
BIN
sound/songs/midi/mus_champ_r.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_cycling.mid
Normal file
BIN
sound/songs/midi/mus_cycling.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_demo.mid
Normal file
BIN
sound/songs/midi/mus_demo.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_dendou.mid
Normal file
BIN
sound/songs/midi/mus_dendou.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_deoeye.mid
Normal file
BIN
sound/songs/midi/mus_deoeye.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_dummy.mid
Normal file
BIN
sound/songs/midi/mus_dummy.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_ending.mid
Normal file
BIN
sound/songs/midi/mus_ending.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_exeye.mid
Normal file
BIN
sound/songs/midi/mus_exeye.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_fan2.mid
Normal file
BIN
sound/songs/midi/mus_fan2.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_fan5.mid
Normal file
BIN
sound/songs/midi/mus_fan5.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_fan6.mid
Normal file
BIN
sound/songs/midi/mus_fan6.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_get_yasei.mid
Normal file
BIN
sound/songs/midi/mus_get_yasei.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_guren.mid
Normal file
BIN
sound/songs/midi/mus_guren.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_gym.mid
Normal file
BIN
sound/songs/midi/mus_gym.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_hanada.mid
Normal file
BIN
sound/songs/midi/mus_hanada.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_jump.mid
Normal file
BIN
sound/songs/midi/mus_jump.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_kaihuku.mid
Normal file
BIN
sound/songs/midi/mus_kaihuku.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_kenkyu.mid
Normal file
BIN
sound/songs/midi/mus_kenkyu.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_kinomikui.mid
Normal file
BIN
sound/songs/midi/mus_kinomikui.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_kuchiba.mid
Normal file
BIN
sound/songs/midi/mus_kuchiba.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_load01.mid
Normal file
BIN
sound/songs/midi/mus_load01.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_load02.mid
Normal file
BIN
sound/songs/midi/mus_load02.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_load03.mid
Normal file
BIN
sound/songs/midi/mus_load03.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_masara.mid
Normal file
BIN
sound/songs/midi/mus_masara.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_asa.mid
Normal file
BIN
sound/songs/midi/mus_me_asa.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_photo.mid
Normal file
BIN
sound/songs/midi/mus_me_photo.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_wasure.mid
Normal file
BIN
sound/songs/midi/mus_me_wasure.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_zannen.mid
Normal file
BIN
sound/songs/midi/mus_me_zannen.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_naminori.mid
Normal file
BIN
sound/songs/midi/mus_naminori.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nana123.mid
Normal file
BIN
sound/songs/midi/mus_nana123.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nana45.mid
Normal file
BIN
sound/songs/midi/mus_nana45.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nana67.mid
Normal file
BIN
sound/songs/midi/mus_nana67.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nanadungeon.mid
Normal file
BIN
sound/songs/midi/mus_nanadungeon.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nanaiseki.mid
Normal file
BIN
sound/songs/midi/mus_nanaiseki.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nanashima.mid
Normal file
BIN
sound/songs/midi/mus_nanashima.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_network.mid
Normal file
BIN
sound/songs/midi/mus_network.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_nibi.mid
Normal file
BIN
sound/songs/midi/mus_nibi.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_ohkido.mid
Normal file
BIN
sound/songs/midi/mus_ohkido.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_okurimono.mid
Normal file
BIN
sound/songs/midi/mus_okurimono.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_opening.mid
Normal file
BIN
sound/songs/midi/mus_opening.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_oshie_tv.mid
Normal file
BIN
sound/songs/midi/mus_oshie_tv.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_otsukimi.mid
Normal file
BIN
sound/songs/midi/mus_otsukimi.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_p_tower.mid
Normal file
BIN
sound/songs/midi/mus_p_tower.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_pokecen.mid
Normal file
BIN
sound/songs/midi/mus_pokecen.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_pokefue.mid
Normal file
BIN
sound/songs/midi/mus_pokefue.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_pokeyashi.mid
Normal file
BIN
sound/songs/midi/mus_pokeyashi.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_purin.mid
Normal file
BIN
sound/songs/midi/mus_purin.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_rival1.mid
Normal file
BIN
sound/songs/midi/mus_rival1.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_rival2.mid
Normal file
BIN
sound/songs/midi/mus_rival2.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_rocket.mid
Normal file
BIN
sound/songs/midi/mus_rocket.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_santoan.mid
Normal file
BIN
sound/songs/midi/mus_santoan.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_seibetu.mid
Normal file
BIN
sound/songs/midi/mus_seibetu.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_sekaikan.mid
Normal file
BIN
sound/songs/midi/mus_sekaikan.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_shion.mid
Normal file
BIN
sound/songs/midi/mus_shion.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_shiruhu.mid
Normal file
BIN
sound/songs/midi/mus_shiruhu.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_shoujo.mid
Normal file
BIN
sound/songs/midi/mus_shoujo.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_shounen.mid
Normal file
BIN
sound/songs/midi/mus_shounen.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_slot.mid
Normal file
BIN
sound/songs/midi/mus_slot.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_slowmasara.mid
Normal file
BIN
sound/songs/midi/mus_slowmasara.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_sousa.mid
Normal file
BIN
sound/songs/midi/mus_sousa.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_t_mori.mid
Normal file
BIN
sound/songs/midi/mus_t_mori.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_t_tower.mid
Normal file
BIN
sound/songs/midi/mus_t_tower.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_tamamusi.mid
Normal file
BIN
sound/songs/midi/mus_tamamusi.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_title.mid
Normal file
BIN
sound/songs/midi/mus_title.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_titlerog.mid
Normal file
BIN
sound/songs/midi/mus_titlerog.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_tvnoize.mid
Normal file
BIN
sound/songs/midi/mus_tvnoize.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_union.mid
Normal file
BIN
sound/songs/midi/mus_union.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_den.mid
Normal file
BIN
sound/songs/midi/mus_vs_den.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_deo.mid
Normal file
BIN
sound/songs/midi/mus_vs_deo.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_gym.mid
Normal file
BIN
sound/songs/midi/mus_vs_gym.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_last.mid
Normal file
BIN
sound/songs/midi/mus_vs_last.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_myu2.mid
Normal file
BIN
sound/songs/midi/mus_vs_myu2.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_tore.mid
Normal file
BIN
sound/songs/midi/mus_vs_tore.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_vs_yasei.mid
Normal file
BIN
sound/songs/midi/mus_vs_yasei.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_win_gym.mid
Normal file
BIN
sound/songs/midi/mus_win_gym.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_win_tre.mid
Normal file
BIN
sound/songs/midi/mus_win_tre.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_win_yasei.mid
Normal file
BIN
sound/songs/midi/mus_win_yasei.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_ban.mid
Normal file
BIN
sound/songs/midi/se_ban.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_basabasa.mid
Normal file
BIN
sound/songs/midi/se_basabasa.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_bidoro.mid
Normal file
BIN
sound/songs/midi/se_bidoro.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_boo.mid
Normal file
BIN
sound/songs/midi/se_boo.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_bowa.mid
Normal file
BIN
sound/songs/midi/se_bowa.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_bowa2.mid
Normal file
BIN
sound/songs/midi/se_bowa2.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_bt_start.mid
Normal file
BIN
sound/songs/midi/se_bt_start.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_c_gaji.mid
Normal file
BIN
sound/songs/midi/se_c_gaji.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_c_maku_d.mid
Normal file
BIN
sound/songs/midi/se_c_maku_d.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_c_maku_u.mid
Normal file
BIN
sound/songs/midi/se_c_maku_u.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_c_pasi.mid
Normal file
BIN
sound/songs/midi/se_c_pasi.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/se_c_pikon.mid
Normal file
BIN
sound/songs/midi/se_c_pikon.mid
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user