mirror of
https://github.com/pret/pokefirered.git
synced 2024-11-23 05:20:05 +00:00
Port songs from Emerald (nonmatching)
This commit is contained in:
parent
dd24c4bd8a
commit
55353e0023
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: ;
|
||||
|
1204
data/sound_data.s
1204
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[];
|
||||
|
339
ld_script.txt
339
ld_script.txt
@ -505,6 +505,345 @@ 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);
|
||||
data/sound_data.o(.rodata.undumped.songs);
|
||||
sound/songs/midi/mus_me_asa.o(.rodata);
|
||||
sound/songs/midi/mus_fanfa1.o(.rodata);
|
||||
sound/songs/midi/mus_fanfa4.o(.rodata);
|
||||
sound/songs/midi/mus_fanfa5.o(.rodata);
|
||||
sound/songs/midi/mus_me_bachi.o(.rodata);
|
||||
sound/songs/midi/mus_me_waza.o(.rodata);
|
||||
sound/songs/midi/mus_me_kinomi.o(.rodata);
|
||||
sound/songs/midi/mus_me_shinka.o(.rodata);
|
||||
sound/songs/midi/mus_shinka.o(.rodata);
|
||||
sound/songs/midi/mus_battle32.o(.rodata);
|
||||
sound/songs/midi/mus_battle20.o(.rodata);
|
||||
sound/songs/midi/mus_p_school.o(.rodata);
|
||||
sound/songs/midi/mus_me_b_big.o(.rodata);
|
||||
sound/songs/midi/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);
|
||||
/*data/sound_data.o(.rodata.unref.song);*/
|
||||
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) -G127 -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 @
|
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_battle20.mid
Normal file
BIN
sound/songs/midi/mus_battle20.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_battle32.mid
Normal file
BIN
sound/songs/midi/mus_battle32.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_fanfa1.mid
Normal file
BIN
sound/songs/midi/mus_fanfa1.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_fanfa4.mid
Normal file
BIN
sound/songs/midi/mus_fanfa4.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_fanfa5.mid
Normal file
BIN
sound/songs/midi/mus_fanfa5.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_b_big.mid
Normal file
BIN
sound/songs/midi/mus_me_b_big.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_b_small.mid
Normal file
BIN
sound/songs/midi/mus_me_b_small.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_bachi.mid
Normal file
BIN
sound/songs/midi/mus_me_bachi.mid
Normal file
Binary file not shown.
BIN
sound/songs/midi/mus_me_kinomi.mid
Normal file
BIN
sound/songs/midi/mus_me_kinomi.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_shinka.mid
Normal file
BIN
sound/songs/midi/mus_me_shinka.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_waza.mid
Normal file
BIN
sound/songs/midi/mus_me_waza.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_school.mid
Normal file
BIN
sound/songs/midi/mus_p_school.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_shinka.mid
Normal file
BIN
sound/songs/midi/mus_shinka.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.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user