dump songs
This commit is contained in:
parent
eb65458b67
commit
d6987ee9b9
14
Makefile
14
Makefile
@ -9,10 +9,12 @@ MAP = $(ROM:.gba=.map)
|
||||
C_SUBDIR = src
|
||||
ASM_SUBDIR = asm
|
||||
DATA_ASM_SUBDIR = data
|
||||
SONG_SUBDIR = sound/songs
|
||||
|
||||
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)
|
||||
|
||||
AS := $(DEVKITARM)/bin/arm-none-eabi-as
|
||||
ASFLAGS := -mcpu=arm7tdmi
|
||||
@ -49,7 +51,7 @@ RAMSCRGEN := tools/ramscrgen/ramscrgen
|
||||
|
||||
.PHONY: rom clean compare tidy
|
||||
|
||||
$(shell mkdir -p $(C_BUILDDIR) $(ASM_BUILDDIR) $(DATA_ASM_BUILDDIR))
|
||||
$(shell mkdir -p $(C_BUILDDIR) $(ASM_BUILDDIR) $(DATA_ASM_BUILDDIR) $(SONG_BUILDDIR))
|
||||
|
||||
C_SRCS := $(wildcard $(C_SUBDIR)/*.c)
|
||||
C_OBJS := $(patsubst $(C_SUBDIR)/%.c,$(C_BUILDDIR)/%.o,$(C_SRCS))
|
||||
@ -60,7 +62,10 @@ ASM_OBJS := $(patsubst $(ASM_SUBDIR)/%.s,$(ASM_BUILDDIR)/%.o,$(ASM_SRCS))
|
||||
DATA_ASM_SRCS := $(wildcard $(DATA_ASM_SUBDIR)/*.s)
|
||||
DATA_ASM_OBJS := $(patsubst $(DATA_ASM_SUBDIR)/%.s,$(DATA_ASM_BUILDDIR)/%.o,$(DATA_ASM_SRCS))
|
||||
|
||||
OBJS := $(C_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS)
|
||||
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)
|
||||
OBJS_REL := $(patsubst $(OBJ_DIR)/%,%,$(OBJS))
|
||||
|
||||
rom: $(ROM)
|
||||
@ -132,6 +137,9 @@ endif
|
||||
$(DATA_ASM_BUILDDIR)/%.o: $(DATA_ASM_SUBDIR)/%.s $$(data_dep)
|
||||
$(PREPROC) $< charmap.txt | $(CPP) -I include | $(AS) $(ASFLAGS) -o $@
|
||||
|
||||
$(SONG_BUILDDIR)/%.o: $(SONG_SUBDIR)/%.s
|
||||
$(AS) $(ASFLAGS) -I sound -o $@ $<
|
||||
|
||||
$(OBJ_DIR)/sym_bss.ld: sym_bss.txt
|
||||
$(RAMSCRGEN) .bss $< ENGLISH > $@
|
||||
|
||||
@ -142,7 +150,7 @@ $(OBJ_DIR)/sym_ewram.ld: sym_ewram.txt
|
||||
$(RAMSCRGEN) ewram_data $< ENGLISH > $@
|
||||
|
||||
$(OBJ_DIR)/ld_script.ld: ld_script.txt $(OBJ_DIR)/sym_bss.ld $(OBJ_DIR)/sym_common.ld $(OBJ_DIR)/sym_ewram.ld
|
||||
cd $(OBJ_DIR) && sed -f ../../ld_script.sed ../../$< | sed "s#tools/#../../tools/#g" | sed "s#sound/#../../sound/#g" > ld_script.ld
|
||||
cd $(OBJ_DIR) && sed -f ../../ld_script.sed ../../$< | sed "s#tools/#../../tools/#g" > ld_script.ld
|
||||
|
||||
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS)
|
||||
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) ../../$(LIBGCC)
|
||||
|
||||
13
asm/macros/m4a.inc
Normal file
13
asm/macros/m4a.inc
Normal file
@ -0,0 +1,13 @@
|
||||
.macro song label, music_player, unknown
|
||||
.4byte \label
|
||||
.2byte \music_player
|
||||
.2byte \unknown
|
||||
.endm
|
||||
|
||||
.macro music_player info_struct, track_struct, unknown_1, unknown_2
|
||||
.4byte \info_struct
|
||||
.4byte \track_struct
|
||||
.byte \unknown_1
|
||||
.space 1
|
||||
.2byte \unknown_2
|
||||
.endm
|
||||
@ -1,3 +1,5 @@
|
||||
#include "constants/flags.h"
|
||||
|
||||
.include "asm/macros.inc"
|
||||
.include "constants/constants.inc"
|
||||
|
||||
@ -1391,10 +1393,14 @@ gUnknown_0860EFF4:: @ 860EFF4
|
||||
.4byte gText_BattlePyramid
|
||||
|
||||
gUnknown_0860F010:: @ 860F010
|
||||
.4byte gUnknown_08680867
|
||||
.4byte gUnknown_086A0869
|
||||
.4byte gUnknown_086C086B
|
||||
.4byte gUnknown_086E086D
|
||||
.2byte FLAG_BADGE01_GET
|
||||
.2byte FLAG_BADGE02_GET
|
||||
.2byte FLAG_BADGE03_GET
|
||||
.2byte FLAG_BADGE04_GET
|
||||
.2byte FLAG_BADGE05_GET
|
||||
.2byte FLAG_BADGE06_GET
|
||||
.2byte FLAG_BADGE07_GET
|
||||
.2byte FLAG_BADGE08_GET
|
||||
|
||||
gUnknown_0860F020:: @ 860F020
|
||||
.4byte gUnknown_082A5D6C
|
||||
|
||||
@ -1,31 +1,14 @@
|
||||
.section .rodata
|
||||
|
||||
voicegroup_pokemon_cry:: @ 8675D04
|
||||
.incbin "baserom.gba", 0x675D04, 0xAB63
|
||||
|
||||
gUnknown_08680867:: @ 8680867
|
||||
.incbin "baserom.gba", 0x680867, 0x1D48D
|
||||
.include "asm/macros/m4a.inc"
|
||||
|
||||
gCryTable:: @ 869DCF4
|
||||
.incbin "baserom.gba", 0x69dcf4, 0x1230
|
||||
.include "sound/voice_groups.inc"
|
||||
|
||||
gCryTable2:: @ 869EF24
|
||||
.incbin "baserom.gba", 0x69ef24, 0x1200
|
||||
@ keysplit tables, programmable wave data
|
||||
.incbin "baserom.gba", 0x6b4698, 0x328
|
||||
|
||||
gUnknown_086A0124:: @ 86A0124
|
||||
.incbin "baserom.gba", 0x6a0124, 0x745
|
||||
|
||||
gUnknown_086A0869:: @ 86A0869
|
||||
.incbin "baserom.gba", 0x6a0869, 0x14157
|
||||
.include "sound/music_player_table.inc"
|
||||
.include "sound/song_table.inc"
|
||||
|
||||
gMPlayTable:: @ 86B49C0
|
||||
.incbin "baserom.gba", 0x6b49c0, 0x30
|
||||
|
||||
gSongTable:: @ 86B49F0
|
||||
.incbin "baserom.gba", 0x6b49f0, 0xbe7b
|
||||
|
||||
gUnknown_086C086B:: @ 86C086B
|
||||
.incbin "baserom.gba", 0x6c086b, 0x20002
|
||||
|
||||
gUnknown_086E086D:: @ 86E086D
|
||||
.incbin "baserom.gba", 0x6e086d, 0x2c27e3
|
||||
@ direct sound data
|
||||
.incbin "baserom.gba", 0x6b5d04, 0x246338
|
||||
|
||||
535
ld_script.txt
535
ld_script.txt
@ -489,6 +489,541 @@ SECTIONS {
|
||||
data/sound_data.o(.rodata);
|
||||
} =0
|
||||
|
||||
song_data :
|
||||
ALIGN(4)
|
||||
{
|
||||
sound/songs/se_stop.o(.rodata);
|
||||
sound/songs/se_kaifuku.o(.rodata);
|
||||
sound/songs/se_pc_logon.o(.rodata);
|
||||
sound/songs/se_pc_off.o(.rodata);
|
||||
sound/songs/se_pc_on.o(.rodata);
|
||||
sound/songs/se_select.o(.rodata);
|
||||
sound/songs/se_win_open.o(.rodata);
|
||||
sound/songs/se_wall_hit.o(.rodata);
|
||||
sound/songs/se_door.o(.rodata);
|
||||
sound/songs/se_kaidan.o(.rodata);
|
||||
sound/songs/se_dansa.o(.rodata);
|
||||
sound/songs/se_jitensya.o(.rodata);
|
||||
sound/songs/se_kouka_l.o(.rodata);
|
||||
sound/songs/se_kouka_m.o(.rodata);
|
||||
sound/songs/se_kouka_h.o(.rodata);
|
||||
sound/songs/se_bowa2.o(.rodata);
|
||||
sound/songs/se_poke_dead.o(.rodata);
|
||||
sound/songs/se_nigeru.o(.rodata);
|
||||
sound/songs/se_jido_doa.o(.rodata);
|
||||
sound/songs/se_naminori.o(.rodata);
|
||||
sound/songs/se_ban.o(.rodata);
|
||||
sound/songs/se_pin.o(.rodata);
|
||||
sound/songs/se_boo.o(.rodata);
|
||||
sound/songs/se_bowa.o(.rodata);
|
||||
sound/songs/se_jyuni.o(.rodata);
|
||||
sound/songs/se_a.o(.rodata);
|
||||
sound/songs/se_i.o(.rodata);
|
||||
sound/songs/se_u.o(.rodata);
|
||||
sound/songs/se_e.o(.rodata);
|
||||
sound/songs/se_o.o(.rodata);
|
||||
sound/songs/se_n.o(.rodata);
|
||||
sound/songs/se_seikai.o(.rodata);
|
||||
sound/songs/se_hazure.o(.rodata);
|
||||
sound/songs/se_exp.o(.rodata);
|
||||
sound/songs/se_jite_pyoko.o(.rodata);
|
||||
sound/songs/se_mu_pachi.o(.rodata);
|
||||
sound/songs/se_tk_kasya.o(.rodata);
|
||||
sound/songs/se_fu_zaku.o(.rodata);
|
||||
sound/songs/se_fu_zaku2.o(.rodata);
|
||||
sound/songs/se_fu_zuzuzu.o(.rodata);
|
||||
sound/songs/se_ru_gashin.o(.rodata);
|
||||
sound/songs/se_ru_gasyan.o(.rodata);
|
||||
sound/songs/se_ru_bari.o(.rodata);
|
||||
sound/songs/se_ru_hyuu.o(.rodata);
|
||||
sound/songs/se_ki_gasyan.o(.rodata);
|
||||
sound/songs/se_tk_warpin.o(.rodata);
|
||||
sound/songs/se_tk_warpout.o(.rodata);
|
||||
sound/songs/se_tu_saa.o(.rodata);
|
||||
sound/songs/se_hi_turun.o(.rodata);
|
||||
sound/songs/se_track_move.o(.rodata);
|
||||
sound/songs/se_track_stop.o(.rodata);
|
||||
sound/songs/se_track_haik.o(.rodata);
|
||||
sound/songs/se_track_door.o(.rodata);
|
||||
sound/songs/se_moter.o(.rodata);
|
||||
sound/songs/se_card.o(.rodata);
|
||||
sound/songs/se_save.o(.rodata);
|
||||
sound/songs/se_kon.o(.rodata);
|
||||
sound/songs/se_kon2.o(.rodata);
|
||||
sound/songs/se_kon3.o(.rodata);
|
||||
sound/songs/se_kon4.o(.rodata);
|
||||
sound/songs/se_suikomu.o(.rodata);
|
||||
sound/songs/se_nageru.o(.rodata);
|
||||
sound/songs/se_toy_c.o(.rodata);
|
||||
sound/songs/se_toy_d.o(.rodata);
|
||||
sound/songs/se_toy_e.o(.rodata);
|
||||
sound/songs/se_toy_f.o(.rodata);
|
||||
sound/songs/se_toy_g.o(.rodata);
|
||||
sound/songs/se_toy_a.o(.rodata);
|
||||
sound/songs/se_toy_b.o(.rodata);
|
||||
sound/songs/se_toy_c1.o(.rodata);
|
||||
sound/songs/se_mizu.o(.rodata);
|
||||
sound/songs/se_hashi.o(.rodata);
|
||||
sound/songs/se_daugi.o(.rodata);
|
||||
sound/songs/se_pinpon.o(.rodata);
|
||||
sound/songs/se_fuusen1.o(.rodata);
|
||||
sound/songs/se_fuusen2.o(.rodata);
|
||||
sound/songs/se_fuusen3.o(.rodata);
|
||||
sound/songs/se_toy_kabe.o(.rodata);
|
||||
sound/songs/se_toy_dango.o(.rodata);
|
||||
sound/songs/se_doku.o(.rodata);
|
||||
sound/songs/se_esuka.o(.rodata);
|
||||
sound/songs/se_t_ame.o(.rodata);
|
||||
sound/songs/se_t_ame_e.o(.rodata);
|
||||
sound/songs/se_t_ooame.o(.rodata);
|
||||
sound/songs/se_t_ooame_e.o(.rodata);
|
||||
sound/songs/se_t_koame.o(.rodata);
|
||||
sound/songs/se_t_koame_e.o(.rodata);
|
||||
sound/songs/se_t_kami.o(.rodata);
|
||||
sound/songs/se_t_kami2.o(.rodata);
|
||||
sound/songs/se_elebeta.o(.rodata);
|
||||
sound/songs/se_hinsi.o(.rodata);
|
||||
sound/songs/se_expmax.o(.rodata);
|
||||
sound/songs/se_tamakoro.o(.rodata);
|
||||
sound/songs/se_tamakoro_e.o(.rodata);
|
||||
sound/songs/se_basabasa.o(.rodata);
|
||||
sound/songs/se_regi.o(.rodata);
|
||||
sound/songs/se_c_gaji.o(.rodata);
|
||||
sound/songs/se_c_maku_u.o(.rodata);
|
||||
sound/songs/se_c_maku_d.o(.rodata);
|
||||
sound/songs/se_c_pasi.o(.rodata);
|
||||
sound/songs/se_c_syu.o(.rodata);
|
||||
sound/songs/se_c_pikon.o(.rodata);
|
||||
sound/songs/se_reapoke.o(.rodata);
|
||||
sound/songs/se_op_basyu.o(.rodata);
|
||||
sound/songs/se_bt_start.o(.rodata);
|
||||
sound/songs/se_dendou.o(.rodata);
|
||||
sound/songs/se_jihanki.o(.rodata);
|
||||
sound/songs/se_tama.o(.rodata);
|
||||
sound/songs/se_z_scroll.o(.rodata);
|
||||
sound/songs/se_z_page.o(.rodata);
|
||||
sound/songs/se_pn_on.o(.rodata);
|
||||
sound/songs/se_pn_off.o(.rodata);
|
||||
sound/songs/se_z_search.o(.rodata);
|
||||
sound/songs/se_tamago.o(.rodata);
|
||||
sound/songs/se_tb_start.o(.rodata);
|
||||
sound/songs/se_tb_kon.o(.rodata);
|
||||
sound/songs/se_tb_kara.o(.rodata);
|
||||
sound/songs/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/se_w015.o(.rodata);
|
||||
sound/songs/se_w081.o(.rodata);
|
||||
sound/songs/se_w081b.o(.rodata);
|
||||
sound/songs/se_w088.o(.rodata);
|
||||
sound/songs/se_w016.o(.rodata);
|
||||
sound/songs/se_w016b.o(.rodata);
|
||||
sound/songs/se_w003.o(.rodata);
|
||||
sound/songs/se_w104.o(.rodata);
|
||||
sound/songs/se_w013.o(.rodata);
|
||||
sound/songs/se_w196.o(.rodata);
|
||||
sound/songs/se_w086.o(.rodata);
|
||||
sound/songs/se_w004.o(.rodata);
|
||||
sound/songs/se_w025.o(.rodata);
|
||||
sound/songs/se_w025b.o(.rodata);
|
||||
sound/songs/se_w152.o(.rodata);
|
||||
sound/songs/se_w026.o(.rodata);
|
||||
sound/songs/se_w172.o(.rodata);
|
||||
sound/songs/se_w172b.o(.rodata);
|
||||
sound/songs/se_w053.o(.rodata);
|
||||
sound/songs/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/se_w036.o(.rodata);
|
||||
sound/songs/se_w059.o(.rodata);
|
||||
sound/songs/se_w059b.o(.rodata);
|
||||
sound/songs/se_w010.o(.rodata);
|
||||
sound/songs/se_w011.o(.rodata);
|
||||
sound/songs/se_w017.o(.rodata);
|
||||
sound/songs/se_w019.o(.rodata);
|
||||
sound/songs/se_w028.o(.rodata);
|
||||
sound/songs/se_w013b.o(.rodata);
|
||||
sound/songs/se_w044.o(.rodata);
|
||||
sound/songs/se_w029.o(.rodata);
|
||||
sound/songs/se_w057.o(.rodata);
|
||||
sound/songs/se_w056.o(.rodata);
|
||||
sound/songs/se_w250.o(.rodata);
|
||||
sound/songs/se_w030.o(.rodata);
|
||||
sound/songs/se_w039.o(.rodata);
|
||||
sound/songs/se_w054.o(.rodata);
|
||||
sound/songs/se_w077.o(.rodata);
|
||||
sound/songs/se_w020.o(.rodata);
|
||||
sound/songs/se_w082.o(.rodata);
|
||||
sound/songs/se_w047.o(.rodata);
|
||||
sound/songs/se_w195.o(.rodata);
|
||||
sound/songs/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/se_w014.o(.rodata);
|
||||
sound/songs/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/song_248.o(.rodata);
|
||||
sound/songs/song_249.o(.rodata);
|
||||
sound/songs/song_250.o(.rodata);
|
||||
sound/songs/song_251.o(.rodata);
|
||||
sound/songs/song_252.o(.rodata);
|
||||
sound/songs/song_253.o(.rodata);
|
||||
sound/songs/song_254.o(.rodata);
|
||||
sound/songs/song_255.o(.rodata);
|
||||
sound/songs/song_256.o(.rodata);
|
||||
sound/songs/song_257.o(.rodata);
|
||||
sound/songs/song_258.o(.rodata);
|
||||
sound/songs/song_259.o(.rodata);
|
||||
sound/songs/song_260.o(.rodata);
|
||||
sound/songs/song_261.o(.rodata);
|
||||
sound/songs/song_262.o(.rodata);
|
||||
sound/songs/song_263.o(.rodata);
|
||||
sound/songs/song_264.o(.rodata);
|
||||
sound/songs/song_265.o(.rodata);
|
||||
sound/songs/song_266.o(.rodata);
|
||||
sound/songs/song_267.o(.rodata);
|
||||
sound/songs/song_268.o(.rodata);
|
||||
sound/songs/song_269.o(.rodata);
|
||||
sound/songs/bgm_tetsuji.o(.rodata);
|
||||
sound/songs/bgm_field13.o(.rodata);
|
||||
sound/songs/bgm_kachi22.o(.rodata);
|
||||
sound/songs/bgm_kachi2.o(.rodata);
|
||||
sound/songs/bgm_kachi3.o(.rodata);
|
||||
sound/songs/bgm_kachi5.o(.rodata);
|
||||
sound/songs/bgm_pcc.o(.rodata);
|
||||
sound/songs/bgm_nibi.o(.rodata);
|
||||
sound/songs/bgm_suikun.o(.rodata);
|
||||
sound/songs/bgm_dooro1.o(.rodata);
|
||||
sound/songs/bgm_dooro_x1.o(.rodata);
|
||||
sound/songs/bgm_dooro_x3.o(.rodata);
|
||||
sound/songs/bgm_machi_s2.o(.rodata);
|
||||
sound/songs/bgm_machi_s4.o(.rodata);
|
||||
sound/songs/bgm_gim.o(.rodata);
|
||||
sound/songs/bgm_naminori.o(.rodata);
|
||||
sound/songs/bgm_dan01.o(.rodata);
|
||||
sound/songs/bgm_fanfa1.o(.rodata);
|
||||
sound/songs/bgm_me_asa.o(.rodata);
|
||||
sound/songs/bgm_me_bachi.o(.rodata);
|
||||
sound/songs/bgm_fanfa4.o(.rodata);
|
||||
sound/songs/bgm_fanfa5.o(.rodata);
|
||||
sound/songs/bgm_me_waza.o(.rodata);
|
||||
sound/songs/bgm_bijyutu.o(.rodata);
|
||||
sound/songs/bgm_dooro_x4.o(.rodata);
|
||||
sound/songs/bgm_fune_kan.o(.rodata);
|
||||
sound/songs/bgm_me_shinka.o(.rodata);
|
||||
sound/songs/bgm_shinka.o(.rodata);
|
||||
sound/songs/bgm_me_wasure.o(.rodata);
|
||||
sound/songs/bgm_syoujoeye.o(.rodata);
|
||||
sound/songs/bgm_boyeye.o(.rodata);
|
||||
sound/songs/bgm_dan02.o(.rodata);
|
||||
sound/songs/bgm_machi_s3.o(.rodata);
|
||||
sound/songs/bgm_odamaki.o(.rodata);
|
||||
sound/songs/bgm_b_tower.o(.rodata);
|
||||
sound/songs/bgm_swimeye.o(.rodata);
|
||||
sound/songs/bgm_dan03.o(.rodata);
|
||||
sound/songs/bgm_me_kinomi.o(.rodata);
|
||||
sound/songs/bgm_me_tama.o(.rodata);
|
||||
sound/songs/bgm_me_b_big.o(.rodata);
|
||||
sound/songs/bgm_me_b_small.o(.rodata);
|
||||
sound/songs/bgm_me_zannen.o(.rodata);
|
||||
sound/songs/bgm_bd_time.o(.rodata);
|
||||
sound/songs/bgm_test1.o(.rodata);
|
||||
sound/songs/bgm_test2.o(.rodata);
|
||||
sound/songs/bgm_test3.o(.rodata);
|
||||
sound/songs/bgm_test4.o(.rodata);
|
||||
sound/songs/bgm_test.o(.rodata);
|
||||
sound/songs/bgm_gomachi0.o(.rodata);
|
||||
sound/songs/bgm_gotown.o(.rodata);
|
||||
sound/songs/bgm_pokecen.o(.rodata);
|
||||
sound/songs/bgm_nextroad.o(.rodata);
|
||||
sound/songs/bgm_granroad.o(.rodata);
|
||||
sound/songs/bgm_cycling.o(.rodata);
|
||||
sound/songs/bgm_friendly.o(.rodata);
|
||||
sound/songs/bgm_mishiro.o(.rodata);
|
||||
sound/songs/bgm_tozan.o(.rodata);
|
||||
sound/songs/bgm_girleye.o(.rodata);
|
||||
sound/songs/bgm_minamo.o(.rodata);
|
||||
sound/songs/bgm_ashroad.o(.rodata);
|
||||
sound/songs/bgm_event0.o(.rodata);
|
||||
sound/songs/bgm_deepdeep.o(.rodata);
|
||||
sound/songs/bgm_kachi1.o(.rodata);
|
||||
sound/songs/bgm_title3.o(.rodata);
|
||||
sound/songs/bgm_demo1.o(.rodata);
|
||||
sound/songs/bgm_girl_sup.o(.rodata);
|
||||
sound/songs/bgm_hageshii.o(.rodata);
|
||||
sound/songs/bgm_kakkoii.o(.rodata);
|
||||
sound/songs/bgm_kazanbai.o(.rodata);
|
||||
sound/songs/bgm_aqa_0.o(.rodata);
|
||||
sound/songs/bgm_tsuretek.o(.rodata);
|
||||
sound/songs/bgm_boy_sup.o(.rodata);
|
||||
sound/songs/bgm_rainbow.o(.rodata);
|
||||
sound/songs/bgm_ayasii.o(.rodata);
|
||||
sound/songs/bgm_kachi4.o(.rodata);
|
||||
sound/songs/bgm_ropeway.o(.rodata);
|
||||
sound/songs/bgm_casino.o(.rodata);
|
||||
sound/songs/bgm_hightown.o(.rodata);
|
||||
sound/songs/bgm_safari.o(.rodata);
|
||||
sound/songs/bgm_c_road.o(.rodata);
|
||||
sound/songs/bgm_ajito.o(.rodata);
|
||||
sound/songs/bgm_m_boat.o(.rodata);
|
||||
sound/songs/bgm_m_dungon.o(.rodata);
|
||||
sound/songs/bgm_finecity.o(.rodata);
|
||||
sound/songs/bgm_machupi.o(.rodata);
|
||||
sound/songs/bgm_p_school.o(.rodata);
|
||||
sound/songs/bgm_dendou.o(.rodata);
|
||||
sound/songs/bgm_tonekusa.o(.rodata);
|
||||
sound/songs/bgm_maborosi.o(.rodata);
|
||||
sound/songs/bgm_con_fan.o(.rodata);
|
||||
sound/songs/bgm_contest0.o(.rodata);
|
||||
sound/songs/bgm_mgm0.o(.rodata);
|
||||
sound/songs/bgm_t_battle.o(.rodata);
|
||||
sound/songs/bgm_ooame.o(.rodata);
|
||||
sound/songs/bgm_hideri.o(.rodata);
|
||||
sound/songs/bgm_runecity.o(.rodata);
|
||||
sound/songs/bgm_con_k.o(.rodata);
|
||||
sound/songs/bgm_eikou_r.o(.rodata);
|
||||
sound/songs/bgm_karakuri.o(.rodata);
|
||||
sound/songs/bgm_hutago.o(.rodata);
|
||||
sound/songs/bgm_sitennou.o(.rodata);
|
||||
sound/songs/bgm_yama_eye.o(.rodata);
|
||||
sound/songs/bgm_conlobby.o(.rodata);
|
||||
sound/songs/bgm_inter_v.o(.rodata);
|
||||
sound/songs/bgm_daigo.o(.rodata);
|
||||
sound/songs/bgm_thankfor.o(.rodata);
|
||||
sound/songs/bgm_end.o(.rodata);
|
||||
sound/songs/bgm_battle_frontier.o(.rodata);
|
||||
sound/songs/bgm_battle_arena.o(.rodata);
|
||||
sound/songs/bgm_me_battle_points.o(.rodata);
|
||||
sound/songs/bgm_me_match_call.o(.rodata);
|
||||
sound/songs/bgm_battle_pyramid.o(.rodata);
|
||||
sound/songs/bgm_battle_pyramid_summit.o(.rodata);
|
||||
sound/songs/bgm_battle_palace.o(.rodata);
|
||||
sound/songs/bgm_fanfa_rayquaza.o(.rodata);
|
||||
sound/songs/bgm_battle_tower.o(.rodata);
|
||||
sound/songs/bgm_me_battle_symbol.o(.rodata);
|
||||
sound/songs/bgm_battle_dome_tournament.o(.rodata);
|
||||
sound/songs/bgm_battle_pike.o(.rodata);
|
||||
sound/songs/bgm_battle_factory.o(.rodata);
|
||||
sound/songs/bgm_battle_legendary.o(.rodata);
|
||||
sound/songs/bgm_battle_frontier_brain.o(.rodata);
|
||||
sound/songs/bgm_battle_mew.o(.rodata);
|
||||
sound/songs/bgm_battle_dome.o(.rodata);
|
||||
sound/songs/bgm_battle27.o(.rodata);
|
||||
sound/songs/bgm_battle31.o(.rodata);
|
||||
sound/songs/bgm_battle20.o(.rodata);
|
||||
sound/songs/bgm_battle32.o(.rodata);
|
||||
sound/songs/bgm_battle33.o(.rodata);
|
||||
sound/songs/bgm_battle36.o(.rodata);
|
||||
sound/songs/bgm_battle34.o(.rodata);
|
||||
sound/songs/bgm_battle35.o(.rodata);
|
||||
sound/songs/bgm_battle38.o(.rodata);
|
||||
sound/songs/bgm_battle30.o(.rodata);
|
||||
sound/songs/bgm_frlg_follow_me.o(.rodata);
|
||||
sound/songs/bgm_frlg_gamecorner.o(.rodata);
|
||||
sound/songs/bgm_frlg_rocket_hideout.o(.rodata);
|
||||
sound/songs/bgm_frlg_gym.o(.rodata);
|
||||
sound/songs/bgm_frlg_jigglypuff.o(.rodata);
|
||||
sound/songs/bgm_frlg_opening.o(.rodata);
|
||||
sound/songs/bgm_frlg_title.o(.rodata);
|
||||
sound/songs/bgm_frlg_cinnabar_island.o(.rodata);
|
||||
sound/songs/bgm_frlg_lavender_town.o(.rodata);
|
||||
sound/songs/bgm_frlg_healing_test.o(.rodata);
|
||||
sound/songs/bgm_frlg_bicycle.o(.rodata);
|
||||
sound/songs/bgm_frlg_suspicious_eye.o(.rodata);
|
||||
sound/songs/bgm_frlg_girl_eye.o(.rodata);
|
||||
sound/songs/bgm_frlg_boy_eye.o(.rodata);
|
||||
sound/songs/bgm_frlg_congratulations_hall_of_fame.o(.rodata);
|
||||
sound/songs/bgm_frlg_viridian_forest.o(.rodata);
|
||||
sound/songs/bgm_frlg_mt_moon.o(.rodata);
|
||||
sound/songs/bgm_frlg_pokemon_mansion.o(.rodata);
|
||||
sound/songs/bgm_frlg_credits.o(.rodata);
|
||||
sound/songs/bgm_frlg_route_1.o(.rodata);
|
||||
sound/songs/bgm_frlg_route_24.o(.rodata);
|
||||
sound/songs/bgm_frlg_route_3.o(.rodata);
|
||||
sound/songs/bgm_frlg_route_11.o(.rodata);
|
||||
sound/songs/bgm_frlg_indigo_plateau.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_leader.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_trainer.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_wild_pokemon.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_champion.o(.rodata);
|
||||
sound/songs/bgm_frlg_pallet_town.o(.rodata);
|
||||
sound/songs/bgm_frlg_oak_lab.o(.rodata);
|
||||
sound/songs/bgm_frlg_prof_oak.o(.rodata);
|
||||
sound/songs/bgm_frlg_pokemon_center.o(.rodata);
|
||||
sound/songs/bgm_frlg_ss_anne.o(.rodata);
|
||||
sound/songs/bgm_frlg_surf.o(.rodata);
|
||||
sound/songs/bgm_frlg_pokemon_tower.o(.rodata);
|
||||
sound/songs/bgm_frlg_silph.o(.rodata);
|
||||
sound/songs/bgm_frlg_cerulean_city.o(.rodata);
|
||||
sound/songs/bgm_frlg_celadon_city.o(.rodata);
|
||||
sound/songs/bgm_frlg_kachi_trainer.o(.rodata);
|
||||
sound/songs/bgm_frlg_kachi_wild_pokemon.o(.rodata);
|
||||
sound/songs/bgm_frlg_kachi_leader.o(.rodata);
|
||||
sound/songs/bgm_frlg_vermilion_city.o(.rodata);
|
||||
sound/songs/bgm_frlg_viridian_city.o(.rodata);
|
||||
sound/songs/bgm_frlg_rival.o(.rodata);
|
||||
sound/songs/bgm_frlg_rival_postbattle.o(.rodata);
|
||||
sound/songs/bgm_frlg_me_pokedex_eval.o(.rodata);
|
||||
sound/songs/bgm_frlg_me_keyitem.o(.rodata);
|
||||
sound/songs/bgm_frlg_fanfa_pokemon_caught.o(.rodata);
|
||||
sound/songs/bgm_frlg_fanfa_trainercard_photo.o(.rodata);
|
||||
sound/songs/bgm_frlg_gamefreak_logo.o(.rodata);
|
||||
sound/songs/bgm_frlg_caught_pokemon.o(.rodata);
|
||||
sound/songs/bgm_frlg_game_explanation_start.o(.rodata);
|
||||
sound/songs/bgm_frlg_game_explanation_middle.o(.rodata);
|
||||
sound/songs/bgm_frlg_game_explanation_end.o(.rodata);
|
||||
sound/songs/bgm_frlg_pokemon_jump.o(.rodata);
|
||||
sound/songs/bgm_frlg_union_room.o(.rodata);
|
||||
sound/songs/bgm_frlg_pokemon_network_center.o(.rodata);
|
||||
sound/songs/bgm_frlg_mystery_gift.o(.rodata);
|
||||
sound/songs/bgm_frlg_dodrio_berry_pick.o(.rodata);
|
||||
sound/songs/bgm_frlg_mt_ember.o(.rodata);
|
||||
sound/songs/bgm_frlg_teachy_tv_episode.o(.rodata);
|
||||
sound/songs/bgm_frlg_sevii_islands.o(.rodata);
|
||||
sound/songs/bgm_frlg_tanoby_ruins.o(.rodata);
|
||||
sound/songs/bgm_frlg_island_one.o(.rodata);
|
||||
sound/songs/bgm_frlg_island_four.o(.rodata);
|
||||
sound/songs/bgm_frlg_island_six.o(.rodata);
|
||||
sound/songs/bgm_frlg_flute.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_deoxys.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_mewtwo.o(.rodata);
|
||||
sound/songs/bgm_frlg_battle_legendary.o(.rodata);
|
||||
sound/songs/bgm_frlg_leader_eye.o(.rodata);
|
||||
sound/songs/bgm_frlg_deoxys_eye.o(.rodata);
|
||||
sound/songs/bgm_frlg_trainer_tower.o(.rodata);
|
||||
sound/songs/bgm_frlg_hall_of_fame_pallet_town.o(.rodata);
|
||||
sound/songs/bgm_frlg_teachy_tv.o(.rodata);
|
||||
sound/songs/song_559.o(.rodata);
|
||||
sound/songs/song_560.o(.rodata);
|
||||
sound/songs/song_561.o(.rodata);
|
||||
sound/songs/song_562.o(.rodata);
|
||||
sound/songs/song_563.o(.rodata);
|
||||
sound/songs/song_564.o(.rodata);
|
||||
sound/songs/song_565.o(.rodata);
|
||||
sound/songs/song_566.o(.rodata);
|
||||
sound/songs/song_567.o(.rodata);
|
||||
sound/songs/song_568.o(.rodata);
|
||||
sound/songs/song_569.o(.rodata);
|
||||
sound/songs/song_570.o(.rodata);
|
||||
sound/songs/song_571.o(.rodata);
|
||||
sound/songs/song_572.o(.rodata);
|
||||
sound/songs/song_573.o(.rodata);
|
||||
sound/songs/song_574.o(.rodata);
|
||||
sound/songs/song_575.o(.rodata);
|
||||
sound/songs/song_576.o(.rodata);
|
||||
sound/songs/song_577.o(.rodata);
|
||||
sound/songs/song_578.o(.rodata);
|
||||
sound/songs/song_579.o(.rodata);
|
||||
sound/songs/song_580.o(.rodata);
|
||||
sound/songs/song_581.o(.rodata);
|
||||
sound/songs/song_582.o(.rodata);
|
||||
sound/songs/song_583.o(.rodata);
|
||||
sound/songs/song_584.o(.rodata);
|
||||
sound/songs/song_585.o(.rodata);
|
||||
sound/songs/song_586.o(.rodata);
|
||||
sound/songs/song_587.o(.rodata);
|
||||
sound/songs/song_588.o(.rodata);
|
||||
sound/songs/song_589.o(.rodata);
|
||||
sound/songs/song_590.o(.rodata);
|
||||
sound/songs/song_591.o(.rodata);
|
||||
sound/songs/song_592.o(.rodata);
|
||||
sound/songs/song_593.o(.rodata);
|
||||
sound/songs/song_594.o(.rodata);
|
||||
sound/songs/song_595.o(.rodata);
|
||||
sound/songs/song_596.o(.rodata);
|
||||
sound/songs/song_597.o(.rodata);
|
||||
sound/songs/song_598.o(.rodata);
|
||||
sound/songs/song_599.o(.rodata);
|
||||
sound/songs/song_600.o(.rodata);
|
||||
sound/songs/song_601.o(.rodata);
|
||||
sound/songs/song_602.o(.rodata);
|
||||
sound/songs/song_603.o(.rodata);
|
||||
sound/songs/song_604.o(.rodata);
|
||||
sound/songs/song_605.o(.rodata);
|
||||
sound/songs/song_606.o(.rodata);
|
||||
sound/songs/song_607.o(.rodata);
|
||||
sound/songs/song_608.o(.rodata);
|
||||
sound/songs/song_609.o(.rodata);
|
||||
} =0
|
||||
|
||||
lib_rodata :
|
||||
SUBALIGN(4)
|
||||
{
|
||||
|
||||
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 @
|
||||
6
sound/music_player_table.inc
Normal file
6
sound/music_player_table.inc
Normal file
@ -0,0 +1,6 @@
|
||||
.align 2
|
||||
gMPlayTable:: @ 86B49C0
|
||||
music_player gMPlay_BGM, 0x3001340, 10, 0
|
||||
music_player gMPlay_SE1, 0x3001660, 3, 1
|
||||
music_player gMPlay_SE2, 0x3001750, 9, 1
|
||||
music_player gMPlay_SE3, 0x3001A20, 1, 0
|
||||
616
sound/song_table.inc
Normal file
616
sound/song_table.inc
Normal file
@ -0,0 +1,616 @@
|
||||
.align 2
|
||||
gSongTable:: @ 86B49F0
|
||||
song se_stop, 0, 0
|
||||
song se_kaifuku, 1, 1
|
||||
song se_pc_logon, 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_a, 1, 1
|
||||
song se_i, 1, 1
|
||||
song se_u, 1, 1
|
||||
song se_e, 1, 1
|
||||
song se_o, 1, 1
|
||||
song se_n, 1, 1
|
||||
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_haik, 2, 2
|
||||
song se_track_door, 1, 1
|
||||
song se_moter, 2, 2
|
||||
song se_card, 1, 1
|
||||
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 song_248, 1, 1
|
||||
song song_249, 1, 1
|
||||
song song_250, 1, 1
|
||||
song song_251, 1, 1
|
||||
song song_252, 1, 1
|
||||
song song_253, 1, 1
|
||||
song song_254, 1, 1
|
||||
song song_255, 1, 1
|
||||
song song_256, 1, 1
|
||||
song song_257, 1, 1
|
||||
song song_258, 1, 1
|
||||
song song_259, 1, 1
|
||||
song song_260, 1, 1
|
||||
song song_261, 1, 1
|
||||
song song_262, 1, 1
|
||||
song song_263, 1, 1
|
||||
song song_264, 1, 1
|
||||
song song_265, 1, 1
|
||||
song song_266, 1, 1
|
||||
song song_267, 1, 1
|
||||
song song_268, 1, 1
|
||||
song song_269, 1, 1
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song dummy_song_header, 0, 0
|
||||
song bgm_tetsuji, 0, 0
|
||||
song bgm_field13, 0, 0
|
||||
song bgm_kachi22, 0, 0
|
||||
song bgm_kachi2, 0, 0
|
||||
song bgm_kachi3, 0, 0
|
||||
song bgm_kachi5, 0, 0
|
||||
song bgm_pcc, 0, 0
|
||||
song bgm_nibi, 0, 0
|
||||
song bgm_suikun, 0, 0
|
||||
song bgm_dooro1, 0, 0
|
||||
song bgm_dooro_x1, 0, 0
|
||||
song bgm_dooro_x3, 0, 0
|
||||
song bgm_machi_s2, 0, 0
|
||||
song bgm_machi_s4, 0, 0
|
||||
song bgm_gim, 0, 0
|
||||
song bgm_naminori, 0, 0
|
||||
song bgm_dan01, 0, 0
|
||||
song bgm_fanfa1, 2, 2
|
||||
song bgm_me_asa, 2, 2
|
||||
song bgm_me_bachi, 2, 2
|
||||
song bgm_fanfa4, 2, 2
|
||||
song bgm_fanfa5, 2, 2
|
||||
song bgm_me_waza, 2, 2
|
||||
song bgm_bijyutu, 0, 0
|
||||
song bgm_dooro_x4, 0, 0
|
||||
song bgm_fune_kan, 0, 0
|
||||
song bgm_me_shinka, 2, 2
|
||||
song bgm_shinka, 0, 0
|
||||
song bgm_me_wasure, 2, 2
|
||||
song bgm_syoujoeye, 0, 0
|
||||
song bgm_boyeye, 0, 0
|
||||
song bgm_dan02, 0, 0
|
||||
song bgm_machi_s3, 0, 0
|
||||
song bgm_odamaki, 0, 0
|
||||
song bgm_b_tower, 0, 0
|
||||
song bgm_swimeye, 0, 0
|
||||
song bgm_dan03, 0, 0
|
||||
song bgm_me_kinomi, 2, 2
|
||||
song bgm_me_tama, 2, 2
|
||||
song bgm_me_b_big, 2, 2
|
||||
song bgm_me_b_small, 2, 2
|
||||
song bgm_me_zannen, 2, 2
|
||||
song bgm_bd_time, 0, 0
|
||||
song bgm_test1, 0, 0
|
||||
song bgm_test2, 0, 0
|
||||
song bgm_test3, 0, 0
|
||||
song bgm_test4, 0, 0
|
||||
song bgm_test, 0, 0
|
||||
song bgm_gomachi0, 0, 0
|
||||
song bgm_gotown, 0, 0
|
||||
song bgm_pokecen, 0, 0
|
||||
song bgm_nextroad, 0, 0
|
||||
song bgm_granroad, 0, 0
|
||||
song bgm_cycling, 0, 0
|
||||
song bgm_friendly, 0, 0
|
||||
song bgm_mishiro, 0, 0
|
||||
song bgm_tozan, 0, 0
|
||||
song bgm_girleye, 0, 0
|
||||
song bgm_minamo, 0, 0
|
||||
song bgm_ashroad, 0, 0
|
||||
song bgm_event0, 0, 0
|
||||
song bgm_deepdeep, 0, 0
|
||||
song bgm_kachi1, 0, 0
|
||||
song bgm_title3, 0, 0
|
||||
song bgm_demo1, 0, 0
|
||||
song bgm_girl_sup, 0, 0
|
||||
song bgm_hageshii, 0, 0
|
||||
song bgm_kakkoii, 0, 0
|
||||
song bgm_kazanbai, 0, 0
|
||||
song bgm_aqa_0, 0, 0
|
||||
song bgm_tsuretek, 0, 0
|
||||
song bgm_boy_sup, 0, 0
|
||||
song bgm_rainbow, 0, 0
|
||||
song bgm_ayasii, 0, 0
|
||||
song bgm_kachi4, 0, 0
|
||||
song bgm_ropeway, 0, 0
|
||||
song bgm_casino, 0, 0
|
||||
song bgm_hightown, 0, 0
|
||||
song bgm_safari, 0, 0
|
||||
song bgm_c_road, 0, 0
|
||||
song bgm_ajito, 0, 0
|
||||
song bgm_m_boat, 0, 0
|
||||
song bgm_m_dungon, 0, 0
|
||||
song bgm_finecity, 0, 0
|
||||
song bgm_machupi, 0, 0
|
||||
song bgm_p_school, 0, 0
|
||||
song bgm_dendou, 0, 0
|
||||
song bgm_tonekusa, 0, 0
|
||||
song bgm_maborosi, 0, 0
|
||||
song bgm_con_fan, 0, 0
|
||||
song bgm_contest0, 0, 0
|
||||
song bgm_mgm0, 0, 0
|
||||
song bgm_t_battle, 0, 0
|
||||
song bgm_ooame, 0, 0
|
||||
song bgm_hideri, 0, 0
|
||||
song bgm_runecity, 0, 0
|
||||
song bgm_con_k, 0, 0
|
||||
song bgm_eikou_r, 0, 0
|
||||
song bgm_karakuri, 0, 0
|
||||
song bgm_hutago, 0, 0
|
||||
song bgm_sitennou, 0, 0
|
||||
song bgm_yama_eye, 0, 0
|
||||
song bgm_conlobby, 0, 0
|
||||
song bgm_inter_v, 0, 0
|
||||
song bgm_daigo, 0, 0
|
||||
song bgm_thankfor, 0, 0
|
||||
song bgm_end, 0, 0
|
||||
song bgm_battle_frontier, 0, 0
|
||||
song bgm_battle_arena, 0, 0
|
||||
song bgm_me_battle_points, 2, 2
|
||||
song bgm_me_match_call, 2, 2
|
||||
song bgm_battle_pyramid, 0, 0
|
||||
song bgm_battle_pyramid_summit, 0, 0
|
||||
song bgm_battle_palace, 0, 0
|
||||
song bgm_fanfa_rayquaza, 0, 0
|
||||
song bgm_battle_tower, 0, 0
|
||||
song bgm_me_battle_symbol, 2, 2
|
||||
song bgm_battle_dome_tournament, 0, 0
|
||||
song bgm_battle_pike, 0, 0
|
||||
song bgm_battle_factory, 0, 0
|
||||
song bgm_battle_legendary, 0, 0
|
||||
song bgm_battle_frontier_brain, 0, 0
|
||||
song bgm_battle_mew, 0, 0
|
||||
song bgm_battle_dome, 0, 0
|
||||
song bgm_battle27, 0, 0
|
||||
song bgm_battle31, 0, 0
|
||||
song bgm_battle20, 0, 0
|
||||
song bgm_battle32, 0, 0
|
||||
song bgm_battle33, 0, 0
|
||||
song bgm_battle36, 0, 0
|
||||
song bgm_battle34, 0, 0
|
||||
song bgm_battle35, 0, 0
|
||||
song bgm_battle38, 0, 0
|
||||
song bgm_battle30, 0, 0
|
||||
song bgm_frlg_follow_me, 0, 0
|
||||
song bgm_frlg_gamecorner, 0, 0
|
||||
song bgm_frlg_rocket_hideout, 0, 0
|
||||
song bgm_frlg_gym, 0, 0
|
||||
song bgm_frlg_jigglypuff, 2, 2
|
||||
song bgm_frlg_opening, 0, 0
|
||||
song bgm_frlg_title, 0, 0
|
||||
song bgm_frlg_cinnabar_island, 0, 0
|
||||
song bgm_frlg_lavender_town, 0, 0
|
||||
song bgm_frlg_healing_test, 0, 0
|
||||
song bgm_frlg_bicycle, 0, 0
|
||||
song bgm_frlg_suspicious_eye, 0, 0
|
||||
song bgm_frlg_girl_eye, 0, 0
|
||||
song bgm_frlg_boy_eye, 0, 0
|
||||
song bgm_frlg_congratulations_hall_of_fame, 0, 0
|
||||
song bgm_frlg_viridian_forest, 0, 0
|
||||
song bgm_frlg_mt_moon, 0, 0
|
||||
song bgm_frlg_pokemon_mansion, 0, 0
|
||||
song bgm_frlg_credits, 0, 0
|
||||
song bgm_frlg_route_1, 0, 0
|
||||
song bgm_frlg_route_24, 0, 0
|
||||
song bgm_frlg_route_3, 0, 0
|
||||
song bgm_frlg_route_11, 0, 0
|
||||
song bgm_frlg_indigo_plateau, 0, 0
|
||||
song bgm_frlg_battle_leader, 0, 0
|
||||
song bgm_frlg_battle_trainer, 0, 0
|
||||
song bgm_frlg_battle_wild_pokemon, 0, 0
|
||||
song bgm_frlg_battle_champion, 0, 0
|
||||
song bgm_frlg_pallet_town, 0, 0
|
||||
song bgm_frlg_oak_lab, 0, 0
|
||||
song bgm_frlg_prof_oak, 0, 0
|
||||
song bgm_frlg_pokemon_center, 0, 0
|
||||
song bgm_frlg_ss_anne, 0, 0
|
||||
song bgm_frlg_surf, 0, 0
|
||||
song bgm_frlg_pokemon_tower, 0, 0
|
||||
song bgm_frlg_silph, 0, 0
|
||||
song bgm_frlg_cerulean_city, 0, 0
|
||||
song bgm_frlg_celadon_city, 0, 0
|
||||
song bgm_frlg_kachi_trainer, 0, 0
|
||||
song bgm_frlg_kachi_wild_pokemon, 0, 0
|
||||
song bgm_frlg_kachi_leader, 0, 0
|
||||
song bgm_frlg_vermilion_city, 0, 0
|
||||
song bgm_frlg_viridian_city, 0, 0
|
||||
song bgm_frlg_rival, 0, 0
|
||||
song bgm_frlg_rival_postbattle, 0, 0
|
||||
song bgm_frlg_me_pokedex_eval, 2, 2
|
||||
song bgm_frlg_me_keyitem, 2, 2
|
||||
song bgm_frlg_fanfa_pokemon_caught, 2, 2
|
||||
song bgm_frlg_fanfa_trainercard_photo, 2, 2
|
||||
song bgm_frlg_gamefreak_logo, 0, 0
|
||||
song bgm_frlg_caught_pokemon, 0, 0
|
||||
song bgm_frlg_game_explanation_start, 0, 0
|
||||
song bgm_frlg_game_explanation_middle, 0, 0
|
||||
song bgm_frlg_game_explanation_end, 0, 0
|
||||
song bgm_frlg_pokemon_jump, 0, 0
|
||||
song bgm_frlg_union_room, 0, 0
|
||||
song bgm_frlg_pokemon_network_center, 0, 0
|
||||
song bgm_frlg_mystery_gift, 0, 0
|
||||
song bgm_frlg_dodrio_berry_pick, 0, 0
|
||||
song bgm_frlg_mt_ember, 0, 0
|
||||
song bgm_frlg_teachy_tv_episode, 0, 0
|
||||
song bgm_frlg_sevii_islands, 0, 0
|
||||
song bgm_frlg_tanoby_ruins, 0, 0
|
||||
song bgm_frlg_island_one, 0, 0
|
||||
song bgm_frlg_island_four, 0, 0
|
||||
song bgm_frlg_island_six, 0, 0
|
||||
song bgm_frlg_flute, 2, 2
|
||||
song bgm_frlg_battle_deoxys, 0, 0
|
||||
song bgm_frlg_battle_mewtwo, 0, 0
|
||||
song bgm_frlg_battle_legendary, 0, 0
|
||||
song bgm_frlg_leader_eye, 0, 0
|
||||
song bgm_frlg_deoxys_eye, 0, 0
|
||||
song bgm_frlg_trainer_tower, 0, 0
|
||||
song bgm_frlg_hall_of_fame_pallet_town, 0, 0
|
||||
song bgm_frlg_teachy_tv, 0, 0
|
||||
song song_559, 2, 2
|
||||
song song_560, 2, 2
|
||||
song song_561, 2, 2
|
||||
song song_562, 2, 2
|
||||
song song_563, 2, 2
|
||||
song song_564, 2, 2
|
||||
song song_565, 2, 2
|
||||
song song_566, 2, 2
|
||||
song song_567, 2, 2
|
||||
song song_568, 2, 2
|
||||
song song_569, 2, 2
|
||||
song song_570, 2, 2
|
||||
song song_571, 2, 2
|
||||
song song_572, 2, 2
|
||||
song song_573, 2, 2
|
||||
song song_574, 2, 2
|
||||
song song_575, 2, 2
|
||||
song song_576, 2, 2
|
||||
song song_577, 2, 2
|
||||
song song_578, 2, 2
|
||||
song song_579, 2, 2
|
||||
song song_580, 2, 2
|
||||
song song_581, 2, 2
|
||||
song song_582, 2, 2
|
||||
song song_583, 2, 2
|
||||
song song_584, 2, 2
|
||||
song song_585, 2, 2
|
||||
song song_586, 2, 2
|
||||
song song_587, 2, 2
|
||||
song song_588, 2, 2
|
||||
song song_589, 2, 2
|
||||
song song_590, 2, 2
|
||||
song song_591, 2, 2
|
||||
song song_592, 2, 2
|
||||
song song_593, 2, 2
|
||||
song song_594, 2, 2
|
||||
song song_595, 2, 2
|
||||
song song_596, 2, 2
|
||||
song song_597, 2, 2
|
||||
song song_598, 2, 2
|
||||
song song_599, 2, 2
|
||||
song song_600, 2, 2
|
||||
song song_601, 2, 2
|
||||
song song_602, 2, 2
|
||||
song song_603, 2, 2
|
||||
song song_604, 2, 2
|
||||
song song_605, 2, 2
|
||||
song song_606, 2, 2
|
||||
song song_607, 2, 2
|
||||
song song_608, 2, 2
|
||||
song song_609, 2, 2
|
||||
|
||||
.align 2
|
||||
dummy_song_header: @ 86B5D00
|
||||
.byte 0, 0, 0, 0
|
||||
1561
sound/songs/bgm_ajito.s
Normal file
1561
sound/songs/bgm_ajito.s
Normal file
File diff suppressed because it is too large
Load Diff
2755
sound/songs/bgm_aqa_0.s
Normal file
2755
sound/songs/bgm_aqa_0.s
Normal file
File diff suppressed because it is too large
Load Diff
2829
sound/songs/bgm_ashroad.s
Normal file
2829
sound/songs/bgm_ashroad.s
Normal file
File diff suppressed because it is too large
Load Diff
1738
sound/songs/bgm_ayasii.s
Normal file
1738
sound/songs/bgm_ayasii.s
Normal file
File diff suppressed because it is too large
Load Diff
2380
sound/songs/bgm_b_tower.s
Normal file
2380
sound/songs/bgm_b_tower.s
Normal file
File diff suppressed because it is too large
Load Diff
3176
sound/songs/bgm_battle20.s
Normal file
3176
sound/songs/bgm_battle20.s
Normal file
File diff suppressed because it is too large
Load Diff
2030
sound/songs/bgm_battle27.s
Normal file
2030
sound/songs/bgm_battle27.s
Normal file
File diff suppressed because it is too large
Load Diff
2749
sound/songs/bgm_battle30.s
Normal file
2749
sound/songs/bgm_battle30.s
Normal file
File diff suppressed because it is too large
Load Diff
3263
sound/songs/bgm_battle31.s
Normal file
3263
sound/songs/bgm_battle31.s
Normal file
File diff suppressed because it is too large
Load Diff
2623
sound/songs/bgm_battle32.s
Normal file
2623
sound/songs/bgm_battle32.s
Normal file
File diff suppressed because it is too large
Load Diff
2886
sound/songs/bgm_battle33.s
Normal file
2886
sound/songs/bgm_battle33.s
Normal file
File diff suppressed because it is too large
Load Diff
1213
sound/songs/bgm_battle34.s
Normal file
1213
sound/songs/bgm_battle34.s
Normal file
File diff suppressed because it is too large
Load Diff
2381
sound/songs/bgm_battle35.s
Normal file
2381
sound/songs/bgm_battle35.s
Normal file
File diff suppressed because it is too large
Load Diff
1657
sound/songs/bgm_battle36.s
Normal file
1657
sound/songs/bgm_battle36.s
Normal file
File diff suppressed because it is too large
Load Diff
2267
sound/songs/bgm_battle38.s
Normal file
2267
sound/songs/bgm_battle38.s
Normal file
File diff suppressed because it is too large
Load Diff
2351
sound/songs/bgm_battle_arena.s
Normal file
2351
sound/songs/bgm_battle_arena.s
Normal file
File diff suppressed because it is too large
Load Diff
386
sound/songs/bgm_battle_dome.s
Normal file
386
sound/songs/bgm_battle_dome.s
Normal file
@ -0,0 +1,386 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_battle_dome_grp, voicegroup_8698054
|
||||
.equ bgm_battle_dome_pri, 0
|
||||
.equ bgm_battle_dome_rev, reverb_set+50
|
||||
.equ bgm_battle_dome_mvl, 127
|
||||
.equ bgm_battle_dome_key, 0
|
||||
.equ bgm_battle_dome_tbs, 1
|
||||
.equ bgm_battle_dome_exg, 0
|
||||
.equ bgm_battle_dome_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_battle_dome
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_battle_dome_1:
|
||||
.byte KEYSH , bgm_battle_dome_key+0
|
||||
.byte TEMPO , 144*bgm_battle_dome_tbs/2
|
||||
.byte VOICE , 0
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 56*bgm_battle_dome_mvl/mxv
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Cn1
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Ds1 , v064
|
||||
.byte W12
|
||||
.byte Ds1 , v036
|
||||
.byte W12
|
||||
.byte Ds1 , v028
|
||||
.byte N06 , Dn2 , v112
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte Cn1
|
||||
.byte N12 , Cn2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte N06 , Cn1
|
||||
.byte N12 , Gn1
|
||||
.byte W12
|
||||
.byte Fn1
|
||||
.byte W12
|
||||
.byte N06 , Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Ds1 , v064
|
||||
.byte W12
|
||||
.byte Ds1 , v036
|
||||
.byte W12
|
||||
.byte Ds1 , v028
|
||||
.byte W12
|
||||
bgm_battle_dome_1_000:
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Cn1
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Ds1 , v064
|
||||
.byte W12
|
||||
.byte Ds1 , v036
|
||||
.byte W12
|
||||
.byte Ds1 , v028
|
||||
.byte N06 , Dn2 , v112
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte Cn1
|
||||
.byte N12 , Cn2
|
||||
.byte W12
|
||||
.byte N06 , An1
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte Cn1
|
||||
.byte N12 , Gn1
|
||||
.byte W12
|
||||
.byte N06 , Fn1
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte Cn1
|
||||
.byte N36 , Cs2 , v068
|
||||
.byte W12
|
||||
.byte N06 , Dn1 , v112
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Cn1
|
||||
.byte N06 , Ds1 , v064
|
||||
.byte W12
|
||||
.byte Ds1 , v112
|
||||
.byte N12 , An2 , v072
|
||||
.byte W06
|
||||
.byte N06 , Dn1 , v112
|
||||
.byte W06
|
||||
bgm_battle_dome_1_B1:
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Fn1
|
||||
.byte N24 , Gn2 , v084
|
||||
.byte W24
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Ds1 , v064
|
||||
.byte N06 , Cn2 , v112
|
||||
.byte W12
|
||||
.byte Ds1 , v036
|
||||
.byte N06 , Bn1 , v112
|
||||
.byte W12
|
||||
.byte Ds1 , v028
|
||||
.byte N06 , Gn1 , v112
|
||||
.byte W12
|
||||
bgm_battle_dome_1_001:
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Cn1
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Ds1 , v064
|
||||
.byte W12
|
||||
.byte Ds1 , v036
|
||||
.byte W12
|
||||
.byte Ds1 , v028
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_1_000
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N12 , Cn2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte N06 , Cn1
|
||||
.byte N06 , Dn1
|
||||
.byte N12 , Gn1
|
||||
.byte N24 , An2 , v072
|
||||
.byte W12
|
||||
.byte N12 , Fn1 , v112
|
||||
.byte W09
|
||||
.byte N03 , Dn1 , v072
|
||||
.byte W03
|
||||
.byte N06 , Dn1 , v112
|
||||
.byte N06 , Ds1
|
||||
.byte N24 , Cs2 , v076
|
||||
.byte W12
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Ds1 , v064
|
||||
.byte N12 , Fn1 , v112
|
||||
.byte W12
|
||||
.byte N06 , Ds1 , v036
|
||||
.byte W12
|
||||
.byte Dn1 , v112
|
||||
.byte N06 , Ds1
|
||||
.byte W06
|
||||
.byte Dn1 , v068
|
||||
.byte W06
|
||||
.byte Cn1 , v112
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Cn1
|
||||
.byte N06 , Fn1
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte W12
|
||||
.byte Ds1 , v064
|
||||
.byte N12 , Cn2 , v112
|
||||
.byte W12
|
||||
.byte N06 , Ds1 , v036
|
||||
.byte N12 , Bn1 , v112
|
||||
.byte W12
|
||||
.byte N06 , Ds1 , v028
|
||||
.byte N12 , Gn1 , v112
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_1_001
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_1_000
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte N06 , Cn2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W06
|
||||
.byte Cn1
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte N06 , Dn1
|
||||
.byte N12 , Gn1
|
||||
.byte N12 , Cs2 , v076
|
||||
.byte W12
|
||||
.byte N06 , Dn1 , v112
|
||||
.byte N12 , An2 , v088
|
||||
.byte W06
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte N06 , Fn1
|
||||
.byte W06
|
||||
.byte Dn1
|
||||
.byte W06
|
||||
.byte Fn1
|
||||
.byte W06
|
||||
.byte Cn1
|
||||
.byte W06
|
||||
.byte Dn1
|
||||
.byte N06 , Ds1
|
||||
.byte N24 , Gn2 , v084
|
||||
.byte W06
|
||||
.byte N06 , Cn1 , v112
|
||||
.byte W06
|
||||
.byte An1
|
||||
.byte W06
|
||||
.byte Gn1
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_battle_dome_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_battle_dome_2:
|
||||
.byte KEYSH , bgm_battle_dome_key+0
|
||||
.byte VOICE , 127
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 38*bgm_battle_dome_mvl/mxv
|
||||
.byte PAN , c_v+63
|
||||
.byte N01 , Cn5 , v112
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v036
|
||||
.byte W12
|
||||
.byte Cn5 , v080
|
||||
.byte W12
|
||||
.byte Cn5 , v048
|
||||
.byte W12
|
||||
bgm_battle_dome_2_000:
|
||||
.byte N01 , Cn5 , v112
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v096
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_battle_dome_2_001:
|
||||
.byte N01 , Cn5 , v112
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_001
|
||||
bgm_battle_dome_2_B1:
|
||||
bgm_battle_dome_2_002:
|
||||
.byte N01 , Cn5 , v112
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v032
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v036
|
||||
.byte W12
|
||||
.byte Cn5 , v080
|
||||
.byte W12
|
||||
.byte Cn5 , v048
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_000
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_001
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_001
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_002
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_000
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_001
|
||||
.byte PATT
|
||||
.word bgm_battle_dome_2_001
|
||||
.byte GOTO
|
||||
.word bgm_battle_dome_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_battle_dome_3:
|
||||
.byte KEYSH , bgm_battle_dome_key+0
|
||||
.byte VOICE , 126
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 56*bgm_battle_dome_mvl/mxv
|
||||
.byte PAN , c_v+63
|
||||
.byte W96
|
||||
.byte W84
|
||||
.byte N12 , Gn5 , v064
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte W96
|
||||
bgm_battle_dome_3_B1:
|
||||
.byte W96
|
||||
.byte W84
|
||||
.byte N12 , Gn5 , v064
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W84
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_battle_dome_3_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_battle_dome:
|
||||
.byte 3 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_battle_dome_pri @ Priority
|
||||
.byte bgm_battle_dome_rev @ Reverb.
|
||||
|
||||
.word bgm_battle_dome_grp
|
||||
|
||||
.word bgm_battle_dome_1
|
||||
.word bgm_battle_dome_2
|
||||
.word bgm_battle_dome_3
|
||||
|
||||
.end
|
||||
4006
sound/songs/bgm_battle_dome_tournament.s
Normal file
4006
sound/songs/bgm_battle_dome_tournament.s
Normal file
File diff suppressed because it is too large
Load Diff
5584
sound/songs/bgm_battle_factory.s
Normal file
5584
sound/songs/bgm_battle_factory.s
Normal file
File diff suppressed because it is too large
Load Diff
3983
sound/songs/bgm_battle_frontier.s
Normal file
3983
sound/songs/bgm_battle_frontier.s
Normal file
File diff suppressed because it is too large
Load Diff
7916
sound/songs/bgm_battle_frontier_brain.s
Normal file
7916
sound/songs/bgm_battle_frontier_brain.s
Normal file
File diff suppressed because it is too large
Load Diff
1213
sound/songs/bgm_battle_legendary.s
Normal file
1213
sound/songs/bgm_battle_legendary.s
Normal file
File diff suppressed because it is too large
Load Diff
3873
sound/songs/bgm_battle_mew.s
Normal file
3873
sound/songs/bgm_battle_mew.s
Normal file
File diff suppressed because it is too large
Load Diff
3933
sound/songs/bgm_battle_palace.s
Normal file
3933
sound/songs/bgm_battle_palace.s
Normal file
File diff suppressed because it is too large
Load Diff
3742
sound/songs/bgm_battle_pike.s
Normal file
3742
sound/songs/bgm_battle_pike.s
Normal file
File diff suppressed because it is too large
Load Diff
6154
sound/songs/bgm_battle_pyramid.s
Normal file
6154
sound/songs/bgm_battle_pyramid.s
Normal file
File diff suppressed because it is too large
Load Diff
851
sound/songs/bgm_battle_pyramid_summit.s
Normal file
851
sound/songs/bgm_battle_pyramid_summit.s
Normal file
@ -0,0 +1,851 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_battle_pyramid_summit_grp, voicegroup_8696A70
|
||||
.equ bgm_battle_pyramid_summit_pri, 0
|
||||
.equ bgm_battle_pyramid_summit_rev, reverb_set+50
|
||||
.equ bgm_battle_pyramid_summit_mvl, 127
|
||||
.equ bgm_battle_pyramid_summit_key, 0
|
||||
.equ bgm_battle_pyramid_summit_tbs, 1
|
||||
.equ bgm_battle_pyramid_summit_exg, 0
|
||||
.equ bgm_battle_pyramid_summit_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_battle_pyramid_summit
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_1:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_1_B1:
|
||||
.byte TEMPO , 90*bgm_battle_pyramid_summit_tbs/2
|
||||
.byte VOICE , 46
|
||||
.byte VOL , 76*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte PAN , c_v-48
|
||||
.byte N06 , Cn3 , v048
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , Bn4
|
||||
.byte W06
|
||||
.byte Dn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte PAN , c_v+32
|
||||
.byte N06 , Gn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , Cn4
|
||||
.byte W06
|
||||
.byte Gn3
|
||||
.byte W06
|
||||
.byte PAN , c_v-48
|
||||
.byte N06 , En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte PAN , c_v+48
|
||||
.byte N06 , Cn3
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Fn4
|
||||
.byte W06
|
||||
.byte Gs4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , Cn5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte PAN , c_v-32
|
||||
.byte N06 , Gs5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gs4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , Fn4
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte PAN , c_v+48
|
||||
.byte N06 , Fn4
|
||||
.byte W06
|
||||
.byte Gs4
|
||||
.byte W06
|
||||
.byte PAN , c_v-48
|
||||
.byte N06 , Cn3
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , Bn4
|
||||
.byte W06
|
||||
.byte Dn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte PAN , c_v+32
|
||||
.byte N06 , Gn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , Cn4
|
||||
.byte W06
|
||||
.byte Gn3
|
||||
.byte W06
|
||||
.byte PAN , c_v-48
|
||||
.byte N06 , En3
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte PAN , c_v+48
|
||||
.byte N06 , Cn3
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte Fs4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , As4
|
||||
.byte W06
|
||||
.byte Cs5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte PAN , c_v-32
|
||||
.byte N06 , Fs5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte Fs4
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N06 , As3
|
||||
.byte W06
|
||||
.byte Fs3
|
||||
.byte W06
|
||||
.byte PAN , c_v+48
|
||||
.byte N06 , As3
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_1_B1
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_2:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_2_B1:
|
||||
.byte VOICE , 48
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte TIE , Cn3 , v040
|
||||
.byte W02
|
||||
.byte VOL , 26*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W10
|
||||
.byte 27*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 28*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 29*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 30*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 31*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 32*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 35*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 41*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 44*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 45*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 49*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 51*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 55*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 61*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 66*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 69*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 70*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 74*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 75*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 76*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 77*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
bgm_battle_pyramid_summit_2_000:
|
||||
.byte VOL , 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 26*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W10
|
||||
.byte 27*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 28*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 29*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 30*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 31*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 32*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 35*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 41*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 44*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 45*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 49*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 51*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 55*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 61*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 66*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 69*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 70*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 74*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte 75*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 76*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W02
|
||||
.byte 77*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W04
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_battle_pyramid_summit_2_000
|
||||
.byte PATT
|
||||
.word bgm_battle_pyramid_summit_2_000
|
||||
.byte EOT , Cn3
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_2_B1
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_3:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_3_B1:
|
||||
.byte VOICE , 5
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N06 , Cn1 , v068
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N12 , Cn3 , v032
|
||||
.byte W12
|
||||
bgm_battle_pyramid_summit_3_000:
|
||||
.byte N06 , Cn1 , v068
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N12 , Cn3 , v032
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_battle_pyramid_summit_3_000
|
||||
.byte PATT
|
||||
.word bgm_battle_pyramid_summit_3_000
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_3_B1
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_4:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_4_B1:
|
||||
.byte VOICE , 53
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N96 , En3 , v044
|
||||
.byte W12
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 32*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 18*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 12*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 7*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 3*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N96 , Fn3
|
||||
.byte W12
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 32*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 18*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 12*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 7*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 3*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N96 , En3
|
||||
.byte W12
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 32*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 18*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 12*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 7*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 3*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N96 , Ds3
|
||||
.byte W12
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 32*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 18*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 12*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 7*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 3*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_4_B1
|
||||
.byte VOL , 0*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_5:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_5_B1:
|
||||
.byte VOICE , 14
|
||||
.byte PAN , c_v-32
|
||||
.byte VOL , 75*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N18 , As4 , v020
|
||||
.byte W18
|
||||
.byte N42 , En4 , v048
|
||||
.byte W18
|
||||
.byte VOL , 62*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v+23
|
||||
.byte N24 , Cn4
|
||||
.byte W12
|
||||
.byte VOL , 31*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v-32
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N30 , Cn5
|
||||
.byte W12
|
||||
.byte VOL , 75*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v+32
|
||||
.byte N42 , Fn4
|
||||
.byte W18
|
||||
.byte VOL , 62*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v-24
|
||||
.byte N24 , Cn4
|
||||
.byte W12
|
||||
.byte VOL , 31*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v+32
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N30 , Cn5
|
||||
.byte W12
|
||||
.byte PAN , c_v-32
|
||||
.byte VOL , 75*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 62*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N36 , En4
|
||||
.byte W18
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 38*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N30 , Cn4
|
||||
.byte W06
|
||||
.byte PAN , c_v+23
|
||||
.byte W12
|
||||
.byte VOL , 31*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v-32
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N30 , Cn5
|
||||
.byte W12
|
||||
.byte W06
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte 62*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v+32
|
||||
.byte N30 , Ds4
|
||||
.byte W18
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte 38*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N24 , Cn4
|
||||
.byte W06
|
||||
.byte VOL , 37*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v-24
|
||||
.byte W12
|
||||
.byte VOL , 31*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N24 , As4
|
||||
.byte W06
|
||||
.byte VOL , 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W06
|
||||
.byte PAN , c_v+32
|
||||
.byte VOL , 50*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_5_B1
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_6:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_6_B1:
|
||||
.byte VOICE , 80
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte N06 , Cn3 , v048
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte Bn4
|
||||
.byte W06
|
||||
.byte Dn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Gn3
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte Cn3
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Fn4
|
||||
.byte W06
|
||||
.byte Gs4
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Gs5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gs4
|
||||
.byte W06
|
||||
.byte Fn4
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Fn4
|
||||
.byte W06
|
||||
.byte Gs4
|
||||
.byte W06
|
||||
.byte Cn3
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte Bn4
|
||||
.byte W06
|
||||
.byte Dn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Gn3
|
||||
.byte W06
|
||||
.byte En3
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte Cn3
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte Fs4
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte Cs5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Fs5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte Fs4
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte As3
|
||||
.byte W06
|
||||
.byte Fs3
|
||||
.byte W06
|
||||
.byte As3
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_6_B1
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_battle_pyramid_summit_7:
|
||||
.byte KEYSH , bgm_battle_pyramid_summit_key+0
|
||||
bgm_battle_pyramid_summit_7_B1:
|
||||
.byte VOICE , 80
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+63
|
||||
.byte VOL , 25*bgm_battle_pyramid_summit_mvl/mxv
|
||||
.byte BEND , c_v+1
|
||||
.byte N06 , Cn4 , v048
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte Bn5
|
||||
.byte W06
|
||||
.byte Dn6
|
||||
.byte W06
|
||||
.byte En6
|
||||
.byte W06
|
||||
.byte Gn6
|
||||
.byte W06
|
||||
.byte En6
|
||||
.byte W06
|
||||
.byte Cn6
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Gs5
|
||||
.byte W06
|
||||
.byte Cn6
|
||||
.byte W06
|
||||
.byte Ds6
|
||||
.byte W06
|
||||
.byte Fn6
|
||||
.byte W06
|
||||
.byte Gs6
|
||||
.byte W06
|
||||
.byte Fn6
|
||||
.byte W06
|
||||
.byte Ds6
|
||||
.byte W06
|
||||
.byte Cn6
|
||||
.byte W06
|
||||
.byte Gs5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Gs5
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte Bn5
|
||||
.byte W06
|
||||
.byte Dn6
|
||||
.byte W06
|
||||
.byte En6
|
||||
.byte W06
|
||||
.byte Gn6
|
||||
.byte W06
|
||||
.byte En6
|
||||
.byte W06
|
||||
.byte Cn6
|
||||
.byte W06
|
||||
.byte Gn5
|
||||
.byte W06
|
||||
.byte En5
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Dn4
|
||||
.byte W06
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte Cn5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Fs5
|
||||
.byte W06
|
||||
.byte As5
|
||||
.byte W06
|
||||
.byte Cs6
|
||||
.byte W06
|
||||
.byte Ds6
|
||||
.byte W06
|
||||
.byte Fs6
|
||||
.byte W06
|
||||
.byte Ds6
|
||||
.byte W06
|
||||
.byte As5
|
||||
.byte W06
|
||||
.byte Fs5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte Fs4
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_battle_pyramid_summit_7_B1
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_battle_pyramid_summit:
|
||||
.byte 7 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_battle_pyramid_summit_pri @ Priority
|
||||
.byte bgm_battle_pyramid_summit_rev @ Reverb.
|
||||
|
||||
.word bgm_battle_pyramid_summit_grp
|
||||
|
||||
.word bgm_battle_pyramid_summit_1
|
||||
.word bgm_battle_pyramid_summit_2
|
||||
.word bgm_battle_pyramid_summit_3
|
||||
.word bgm_battle_pyramid_summit_4
|
||||
.word bgm_battle_pyramid_summit_5
|
||||
.word bgm_battle_pyramid_summit_6
|
||||
.word bgm_battle_pyramid_summit_7
|
||||
|
||||
.end
|
||||
3498
sound/songs/bgm_battle_tower.s
Normal file
3498
sound/songs/bgm_battle_tower.s
Normal file
File diff suppressed because it is too large
Load Diff
1327
sound/songs/bgm_bd_time.s
Normal file
1327
sound/songs/bgm_bd_time.s
Normal file
File diff suppressed because it is too large
Load Diff
2124
sound/songs/bgm_bijyutu.s
Normal file
2124
sound/songs/bgm_bijyutu.s
Normal file
File diff suppressed because it is too large
Load Diff
2591
sound/songs/bgm_boy_sup.s
Normal file
2591
sound/songs/bgm_boy_sup.s
Normal file
File diff suppressed because it is too large
Load Diff
1238
sound/songs/bgm_boyeye.s
Normal file
1238
sound/songs/bgm_boyeye.s
Normal file
File diff suppressed because it is too large
Load Diff
4036
sound/songs/bgm_c_road.s
Normal file
4036
sound/songs/bgm_c_road.s
Normal file
File diff suppressed because it is too large
Load Diff
4151
sound/songs/bgm_casino.s
Normal file
4151
sound/songs/bgm_casino.s
Normal file
File diff suppressed because it is too large
Load Diff
1215
sound/songs/bgm_con_fan.s
Normal file
1215
sound/songs/bgm_con_fan.s
Normal file
File diff suppressed because it is too large
Load Diff
824
sound/songs/bgm_con_k.s
Normal file
824
sound/songs/bgm_con_k.s
Normal file
@ -0,0 +1,824 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_con_k_grp, voicegroup_869167C
|
||||
.equ bgm_con_k_pri, 0
|
||||
.equ bgm_con_k_rev, reverb_set+50
|
||||
.equ bgm_con_k_mvl, 127
|
||||
.equ bgm_con_k_key, 0
|
||||
.equ bgm_con_k_tbs, 1
|
||||
.equ bgm_con_k_exg, 0
|
||||
.equ bgm_con_k_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_con_k
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_con_k_1:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte TEMPO , 128*bgm_con_k_tbs/2
|
||||
.byte VOICE , 127
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+4
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 46*bgm_con_k_mvl/mxv
|
||||
.byte W24
|
||||
bgm_con_k_1_B1:
|
||||
bgm_con_k_1_000:
|
||||
.byte N02 , Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte PEND
|
||||
bgm_con_k_1_001:
|
||||
.byte N02 , Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W04
|
||||
.byte Gn5 , v060
|
||||
.byte W04
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte Gn5 , v112
|
||||
.byte W08
|
||||
.byte Gn5 , v064
|
||||
.byte W08
|
||||
.byte N02
|
||||
.byte W08
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_con_k_1_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_1_001
|
||||
.byte PATT
|
||||
.word bgm_con_k_1_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_1_001
|
||||
.byte PATT
|
||||
.word bgm_con_k_1_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_1_001
|
||||
.byte GOTO
|
||||
.word bgm_con_k_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_con_k_2:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 24
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 57*bgm_con_k_mvl/mxv
|
||||
.byte W24
|
||||
bgm_con_k_2_B1:
|
||||
.byte N20 , Bn3 , v112
|
||||
.byte W24
|
||||
.byte N04 , As3
|
||||
.byte W16
|
||||
.byte Bn3
|
||||
.byte W08
|
||||
.byte N08 , Cs4
|
||||
.byte W16
|
||||
.byte N04 , En4
|
||||
.byte W08
|
||||
.byte N08 , Bn3
|
||||
.byte W24
|
||||
.byte Fs3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte Gs3
|
||||
.byte W16
|
||||
.byte N04 , Ds4
|
||||
.byte W08
|
||||
.byte N08 , Fs3
|
||||
.byte W08
|
||||
.byte N04 , Gs3
|
||||
.byte W08
|
||||
.byte Fs3
|
||||
.byte W08
|
||||
.byte N08 , En3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte Fs3
|
||||
.byte W24
|
||||
.byte En3
|
||||
.byte W24
|
||||
.byte N24 , Fs3
|
||||
.byte W24
|
||||
.byte N08 , Fn3
|
||||
.byte W16
|
||||
.byte Fs3
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte N12 , Bn3
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte As3
|
||||
.byte W08
|
||||
.byte Bn3
|
||||
.byte W08
|
||||
.byte N08 , Cs4
|
||||
.byte W24
|
||||
.byte Bn3
|
||||
.byte W16
|
||||
.byte N04 , As3
|
||||
.byte W08
|
||||
.byte N08 , Fs3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte Bn3
|
||||
.byte W24
|
||||
.byte Cs4
|
||||
.byte W24
|
||||
.byte En3
|
||||
.byte N24 , En4
|
||||
.byte W24
|
||||
.byte N08 , En3
|
||||
.byte N08 , Ds4
|
||||
.byte W16
|
||||
.byte Bn3
|
||||
.byte W08
|
||||
.byte Fs3
|
||||
.byte N08 , Cn4
|
||||
.byte W24
|
||||
.byte En3
|
||||
.byte N08 , Cs4
|
||||
.byte W24
|
||||
.byte N24 , Fs3
|
||||
.byte W24
|
||||
.byte N08 , Fn3
|
||||
.byte W16
|
||||
.byte Fs3
|
||||
.byte W08
|
||||
.byte Bn3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_con_k_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_con_k_3:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 38
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 80*bgm_con_k_mvl/mxv
|
||||
.byte BEND , c_v-48
|
||||
.byte N24 , Bn0 , v112
|
||||
.byte W04
|
||||
.byte BEND , c_v-32
|
||||
.byte W04
|
||||
.byte c_v-18
|
||||
.byte W04
|
||||
.byte c_v+0
|
||||
.byte W12
|
||||
bgm_con_k_3_B1:
|
||||
.byte BEND , c_v+0
|
||||
.byte N32 , En1 , v112
|
||||
.byte W32
|
||||
.byte N08 , Ds1
|
||||
.byte W08
|
||||
.byte N04 , En1
|
||||
.byte W08
|
||||
.byte N36
|
||||
.byte W40
|
||||
.byte N04
|
||||
.byte W08
|
||||
bgm_con_k_3_000:
|
||||
.byte N32 , Ds1 , v112
|
||||
.byte W32
|
||||
.byte N08 , Dn1
|
||||
.byte W08
|
||||
.byte N04 , Cs1
|
||||
.byte W08
|
||||
.byte N16 , Bn0
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte N08 , As0
|
||||
.byte W08
|
||||
.byte N04 , Bn0
|
||||
.byte W08
|
||||
.byte PEND
|
||||
bgm_con_k_3_001:
|
||||
.byte N32 , Cs1 , v112
|
||||
.byte W32
|
||||
.byte N04 , Cn1
|
||||
.byte W08
|
||||
.byte Cs1
|
||||
.byte W08
|
||||
.byte N16 , Fs1
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W08
|
||||
.byte N04 , En1
|
||||
.byte W08
|
||||
.byte Ds1
|
||||
.byte W08
|
||||
.byte PEND
|
||||
bgm_con_k_3_002:
|
||||
.byte N24 , Bn0 , v112
|
||||
.byte W24
|
||||
.byte N08 , As0
|
||||
.byte W16
|
||||
.byte N04 , Bn0
|
||||
.byte W08
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte PEND
|
||||
.byte N12 , En1
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte N08 , Ds1
|
||||
.byte W08
|
||||
.byte N04 , En1
|
||||
.byte W08
|
||||
.byte N36
|
||||
.byte W40
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte PATT
|
||||
.word bgm_con_k_3_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_3_001
|
||||
.byte PATT
|
||||
.word bgm_con_k_3_002
|
||||
.byte GOTO
|
||||
.word bgm_con_k_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_con_k_4:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 24
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+2
|
||||
.byte VOL , 50*bgm_con_k_mvl/mxv
|
||||
.byte N24 , Fs3 , v112
|
||||
.byte W24
|
||||
bgm_con_k_4_B1:
|
||||
.byte W16
|
||||
.byte N08 , Gs4 , v112
|
||||
.byte W08
|
||||
.byte N04 , As4
|
||||
.byte W04
|
||||
.byte N08 , As4 , v032
|
||||
.byte W12
|
||||
.byte N04 , Bn4 , v112
|
||||
.byte W08
|
||||
.byte N16 , As4
|
||||
.byte W16
|
||||
.byte N08 , As4 , v032
|
||||
.byte W08
|
||||
.byte N24 , Gs4 , v112
|
||||
.byte W24
|
||||
.byte N48 , Fs4
|
||||
.byte W24
|
||||
.byte VOL , 48*bgm_con_k_mvl/mxv
|
||||
.byte MOD , 6
|
||||
.byte W01
|
||||
.byte VOL , 45*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 43*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 37*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 36*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 35*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 28*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 25*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 20*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 18*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 16*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 15*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 49*bgm_con_k_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N08 , Bn4
|
||||
.byte W08
|
||||
.byte Bn4 , v032
|
||||
.byte W40
|
||||
.byte W16
|
||||
.byte En4 , v112
|
||||
.byte W08
|
||||
.byte N04 , Fs4
|
||||
.byte W04
|
||||
.byte N08 , Fs4 , v032
|
||||
.byte W12
|
||||
.byte N04 , Gs4 , v112
|
||||
.byte W08
|
||||
.byte N08 , Fs4
|
||||
.byte W16
|
||||
.byte N32 , En4
|
||||
.byte W32
|
||||
.byte N48 , Ds4
|
||||
.byte W24
|
||||
.byte MOD , 7
|
||||
.byte VOL , 48*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 45*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 43*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 37*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 36*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 35*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 28*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 25*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 20*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 18*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte 16*bgm_con_k_mvl/mxv
|
||||
.byte W01
|
||||
.byte 15*bgm_con_k_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 49*bgm_con_k_mvl/mxv
|
||||
.byte N08 , Fs4
|
||||
.byte W08
|
||||
.byte Fs4 , v032
|
||||
.byte W40
|
||||
.byte W16
|
||||
.byte N04 , Gs4 , v112
|
||||
.byte W08
|
||||
.byte N08 , As4
|
||||
.byte W16
|
||||
.byte N04 , Bn4
|
||||
.byte W08
|
||||
.byte Cs5
|
||||
.byte W16
|
||||
.byte N08 , Bn4
|
||||
.byte W08
|
||||
.byte As4
|
||||
.byte W08
|
||||
.byte As4 , v032
|
||||
.byte W08
|
||||
.byte N04 , Bn4 , v112
|
||||
.byte W08
|
||||
.byte W16
|
||||
.byte As4
|
||||
.byte W08
|
||||
.byte N08 , Bn4
|
||||
.byte W08
|
||||
.byte Bn4 , v032
|
||||
.byte W08
|
||||
.byte N04 , Cs5 , v112
|
||||
.byte W08
|
||||
.byte N08 , Ds5 , v100
|
||||
.byte W08
|
||||
.byte Ds5 , v032
|
||||
.byte W08
|
||||
.byte N04 , Bn4 , v096
|
||||
.byte W04
|
||||
.byte N08 , Bn4 , v032
|
||||
.byte W28
|
||||
.byte W16
|
||||
.byte En5 , v100
|
||||
.byte W08
|
||||
.byte N04 , Ds5
|
||||
.byte W04
|
||||
.byte N08 , Ds5 , v032
|
||||
.byte W12
|
||||
.byte N04 , Bn4 , v112
|
||||
.byte W08
|
||||
.byte Cn5
|
||||
.byte W04
|
||||
.byte N08 , Cn5 , v032
|
||||
.byte W20
|
||||
.byte N04 , Cs5 , v112
|
||||
.byte W04
|
||||
.byte N08 , Cs5 , v032
|
||||
.byte W20
|
||||
.byte Bn4 , v112
|
||||
.byte W08
|
||||
.byte Bn4 , v032
|
||||
.byte W88
|
||||
.byte GOTO
|
||||
.word bgm_con_k_4_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_con_k_5:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 80
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v-62
|
||||
.byte VOL , 46*bgm_con_k_mvl/mxv
|
||||
.byte W24
|
||||
bgm_con_k_5_B1:
|
||||
.byte N20 , En3 , v112
|
||||
.byte W24
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
bgm_con_k_5_000:
|
||||
.byte N08 , As2 , v112
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_con_k_5_001:
|
||||
.byte N08 , Gs2 , v112
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_con_k_5_002:
|
||||
.byte N24 , An2 , v112
|
||||
.byte W24
|
||||
.byte N08 , Gs2
|
||||
.byte W16
|
||||
.byte An2
|
||||
.byte W08
|
||||
.byte Bn2
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte N12 , En3
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_con_k_5_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_5_001
|
||||
.byte PATT
|
||||
.word bgm_con_k_5_002
|
||||
.byte GOTO
|
||||
.word bgm_con_k_5_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_con_k_6:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 81
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+63
|
||||
.byte VOL , 45*bgm_con_k_mvl/mxv
|
||||
.byte W24
|
||||
bgm_con_k_6_B1:
|
||||
.byte N20 , Gs3 , v112
|
||||
.byte W24
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N08 , As3
|
||||
.byte W24
|
||||
.byte Gs3
|
||||
.byte W24
|
||||
bgm_con_k_6_000:
|
||||
.byte N08 , Cs3 , v112
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_con_k_6_001:
|
||||
.byte N08 , Bn2 , v112
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte Cs3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_con_k_6_002:
|
||||
.byte N24 , Cs3 , v112
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W08
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte N08
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte W16
|
||||
.byte N04 , Gs3
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N08 , As3
|
||||
.byte W24
|
||||
.byte Gs3
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_con_k_6_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_6_001
|
||||
.byte PATT
|
||||
.word bgm_con_k_6_002
|
||||
.byte GOTO
|
||||
.word bgm_con_k_6_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_con_k_7:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 70*bgm_con_k_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N04 , Dn1 , v112
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte Cn1
|
||||
.byte W08
|
||||
bgm_con_k_7_B1:
|
||||
bgm_con_k_7_000:
|
||||
.byte N04 , Cn1 , v112
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte W16
|
||||
.byte Cn1 , v084
|
||||
.byte W08
|
||||
.byte Cn1 , v112
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte Dn1
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_con_k_7_001:
|
||||
.byte N04 , Cn1 , v112
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte W16
|
||||
.byte Cn1 , v084
|
||||
.byte W08
|
||||
.byte Cn1 , v112
|
||||
.byte W08
|
||||
.byte Dn1 , v088
|
||||
.byte W08
|
||||
.byte Cn1 , v112
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte Dn1
|
||||
.byte W08
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_con_k_7_000
|
||||
.byte N04 , Cn1 , v112
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte W16
|
||||
.byte Cn1 , v084
|
||||
.byte W08
|
||||
.byte Cn1 , v112
|
||||
.byte W08
|
||||
.byte Dn1
|
||||
.byte W08
|
||||
.byte Cn1
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W16
|
||||
.byte Dn1
|
||||
.byte W08
|
||||
.byte PATT
|
||||
.word bgm_con_k_7_000
|
||||
.byte PATT
|
||||
.word bgm_con_k_7_001
|
||||
.byte PATT
|
||||
.word bgm_con_k_7_000
|
||||
.byte N04 , Cn1 , v112
|
||||
.byte W24
|
||||
.byte Dn1
|
||||
.byte W16
|
||||
.byte Cn1 , v084
|
||||
.byte W08
|
||||
.byte Cn1 , v112
|
||||
.byte W16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte Dn1
|
||||
.byte W08
|
||||
.byte Cn1 , v088
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte GOTO
|
||||
.word bgm_con_k_7_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 8 **********************@
|
||||
|
||||
bgm_con_k_8:
|
||||
.byte KEYSH , bgm_con_k_key+0
|
||||
.byte VOICE , 82
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 34*bgm_con_k_mvl/mxv
|
||||
.byte W24
|
||||
bgm_con_k_8_B1:
|
||||
.byte W16
|
||||
.byte N08 , Gs4 , v112
|
||||
.byte W08
|
||||
.byte N04 , As4
|
||||
.byte W16
|
||||
.byte Bn4
|
||||
.byte W08
|
||||
.byte N16 , As4
|
||||
.byte W24
|
||||
.byte N24 , Gs4
|
||||
.byte W24
|
||||
.byte N48 , Fs4
|
||||
.byte W48
|
||||
.byte N08 , Bn4
|
||||
.byte W48
|
||||
.byte W16
|
||||
.byte En4
|
||||
.byte W08
|
||||
.byte N04 , Fs4
|
||||
.byte W16
|
||||
.byte Gs4
|
||||
.byte W08
|
||||
.byte N08 , Fs4
|
||||
.byte W16
|
||||
.byte N32 , En4
|
||||
.byte W32
|
||||
.byte N48 , Ds4
|
||||
.byte W48
|
||||
.byte N08 , Fs4
|
||||
.byte W16
|
||||
.byte BEND , c_v+1
|
||||
.byte W32
|
||||
.byte W16
|
||||
.byte N04 , Gs4
|
||||
.byte W08
|
||||
.byte N08 , As4
|
||||
.byte W16
|
||||
.byte N04 , Bn4
|
||||
.byte W08
|
||||
.byte Cs5
|
||||
.byte W16
|
||||
.byte N08 , Bn4
|
||||
.byte W08
|
||||
.byte As4
|
||||
.byte W16
|
||||
.byte N04 , Bn4
|
||||
.byte W08
|
||||
.byte W16
|
||||
.byte As4
|
||||
.byte W08
|
||||
.byte N08 , Bn4
|
||||
.byte W16
|
||||
.byte N04 , Cs5
|
||||
.byte W08
|
||||
.byte N08 , Ds5
|
||||
.byte W16
|
||||
.byte N04 , Bn4
|
||||
.byte W32
|
||||
.byte W16
|
||||
.byte N08 , En5
|
||||
.byte W08
|
||||
.byte N04 , Ds5
|
||||
.byte W16
|
||||
.byte Bn4
|
||||
.byte W08
|
||||
.byte Cn5
|
||||
.byte W24
|
||||
.byte Cs5
|
||||
.byte W24
|
||||
.byte N08 , Bn4
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_con_k_8_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_con_k:
|
||||
.byte 8 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_con_k_pri @ Priority
|
||||
.byte bgm_con_k_rev @ Reverb.
|
||||
|
||||
.word bgm_con_k_grp
|
||||
|
||||
.word bgm_con_k_1
|
||||
.word bgm_con_k_2
|
||||
.word bgm_con_k_3
|
||||
.word bgm_con_k_4
|
||||
.word bgm_con_k_5
|
||||
.word bgm_con_k_6
|
||||
.word bgm_con_k_7
|
||||
.word bgm_con_k_8
|
||||
|
||||
.end
|
||||
1200
sound/songs/bgm_conlobby.s
Normal file
1200
sound/songs/bgm_conlobby.s
Normal file
File diff suppressed because it is too large
Load Diff
3062
sound/songs/bgm_contest0.s
Normal file
3062
sound/songs/bgm_contest0.s
Normal file
File diff suppressed because it is too large
Load Diff
4651
sound/songs/bgm_cycling.s
Normal file
4651
sound/songs/bgm_cycling.s
Normal file
File diff suppressed because it is too large
Load Diff
3315
sound/songs/bgm_daigo.s
Normal file
3315
sound/songs/bgm_daigo.s
Normal file
File diff suppressed because it is too large
Load Diff
1635
sound/songs/bgm_dan01.s
Normal file
1635
sound/songs/bgm_dan01.s
Normal file
File diff suppressed because it is too large
Load Diff
1789
sound/songs/bgm_dan02.s
Normal file
1789
sound/songs/bgm_dan02.s
Normal file
File diff suppressed because it is too large
Load Diff
1926
sound/songs/bgm_dan03.s
Normal file
1926
sound/songs/bgm_dan03.s
Normal file
File diff suppressed because it is too large
Load Diff
3932
sound/songs/bgm_deepdeep.s
Normal file
3932
sound/songs/bgm_deepdeep.s
Normal file
File diff suppressed because it is too large
Load Diff
3430
sound/songs/bgm_demo1.s
Normal file
3430
sound/songs/bgm_demo1.s
Normal file
File diff suppressed because it is too large
Load Diff
2303
sound/songs/bgm_dendou.s
Normal file
2303
sound/songs/bgm_dendou.s
Normal file
File diff suppressed because it is too large
Load Diff
1713
sound/songs/bgm_dooro1.s
Normal file
1713
sound/songs/bgm_dooro1.s
Normal file
File diff suppressed because it is too large
Load Diff
2206
sound/songs/bgm_dooro_x1.s
Normal file
2206
sound/songs/bgm_dooro_x1.s
Normal file
File diff suppressed because it is too large
Load Diff
3650
sound/songs/bgm_dooro_x3.s
Normal file
3650
sound/songs/bgm_dooro_x3.s
Normal file
File diff suppressed because it is too large
Load Diff
2905
sound/songs/bgm_dooro_x4.s
Normal file
2905
sound/songs/bgm_dooro_x4.s
Normal file
File diff suppressed because it is too large
Load Diff
1610
sound/songs/bgm_eikou_r.s
Normal file
1610
sound/songs/bgm_eikou_r.s
Normal file
File diff suppressed because it is too large
Load Diff
924
sound/songs/bgm_end.s
Normal file
924
sound/songs/bgm_end.s
Normal file
@ -0,0 +1,924 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_end_grp, voicegroup_86951A4
|
||||
.equ bgm_end_pri, 0
|
||||
.equ bgm_end_rev, reverb_set+50
|
||||
.equ bgm_end_mvl, 127
|
||||
.equ bgm_end_key, 0
|
||||
.equ bgm_end_tbs, 1
|
||||
.equ bgm_end_exg, 0
|
||||
.equ bgm_end_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_end
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_end_1:
|
||||
.byte KEYSH , bgm_end_key+0
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte VOICE , 24
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 30*bgm_end_mvl/mxv
|
||||
.byte N03 , Cn4 , v112
|
||||
.byte W24
|
||||
.byte Dn4
|
||||
.byte W12
|
||||
.byte Ds3 , v064
|
||||
.byte W03
|
||||
.byte Gn3
|
||||
.byte W03
|
||||
.byte As3 , v068
|
||||
.byte W03
|
||||
.byte Ds4
|
||||
.byte W03
|
||||
bgm_end_1_B1:
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte N03 , Gn4 , v112
|
||||
.byte W42
|
||||
.byte As3 , v064
|
||||
.byte W03
|
||||
.byte Ds4 , v068
|
||||
.byte W03
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte An4 , v112
|
||||
.byte W24
|
||||
.byte TEMPO , 124*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 140*bgm_end_tbs/2
|
||||
.byte As4
|
||||
.byte W42
|
||||
.byte Gn4 , v052
|
||||
.byte W03
|
||||
.byte As4 , v056
|
||||
.byte W03
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte Dn5 , v068
|
||||
.byte W03
|
||||
.byte Fn5 , v112
|
||||
.byte W21
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W96
|
||||
.byte Ds5
|
||||
.byte W24
|
||||
.byte Dn5
|
||||
.byte W24
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte Cn5
|
||||
.byte W24
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 116*bgm_end_tbs/2
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Dn4 , v064
|
||||
.byte W03
|
||||
.byte Fn4 , v072
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte An4 , v076
|
||||
.byte W03
|
||||
.byte Dn5 , v112
|
||||
.byte W44
|
||||
.byte W01
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte N01 , Fn4
|
||||
.byte W16
|
||||
.byte Gn4
|
||||
.byte W08
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W08
|
||||
.byte Gs4
|
||||
.byte W04
|
||||
.byte TEMPO , 108*bgm_end_tbs/2
|
||||
.byte W06
|
||||
.byte N03 , An3 , v068
|
||||
.byte W03
|
||||
.byte Dn4 , v076
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte An4 , v112
|
||||
.byte W48
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte Cn5
|
||||
.byte W24
|
||||
.byte TEMPO , 124*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 114*bgm_end_tbs/2
|
||||
.byte W06
|
||||
.byte Dn4 , v068
|
||||
.byte W03
|
||||
.byte Gn4
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte N01 , Cn5 , v112
|
||||
.byte W16
|
||||
.byte Dn5
|
||||
.byte W16
|
||||
.byte As4
|
||||
.byte W64
|
||||
.byte W09
|
||||
.byte N03 , Fn4 , v068
|
||||
.byte W03
|
||||
.byte As4 , v076
|
||||
.byte W30
|
||||
.byte Dn4 , v064
|
||||
.byte W03
|
||||
.byte Fn4 , v068
|
||||
.byte W03
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte N01 , As4 , v112
|
||||
.byte W16
|
||||
.byte An4
|
||||
.byte W08
|
||||
.byte TEMPO , 100*bgm_end_tbs/2
|
||||
.byte W08
|
||||
.byte As4
|
||||
.byte W04
|
||||
.byte N03 , Ds3 , v064
|
||||
.byte W03
|
||||
.byte Gn3
|
||||
.byte W03
|
||||
.byte As3 , v068
|
||||
.byte W03
|
||||
.byte Ds4
|
||||
.byte W03
|
||||
.byte TEMPO , 140*bgm_end_tbs/2
|
||||
.byte Gn4 , v112
|
||||
.byte W42
|
||||
.byte As3 , v064
|
||||
.byte W03
|
||||
.byte Ds4 , v068
|
||||
.byte W03
|
||||
.byte An4 , v112
|
||||
.byte W48
|
||||
.byte As4
|
||||
.byte W42
|
||||
.byte Gn4 , v052
|
||||
.byte W03
|
||||
.byte As4 , v056
|
||||
.byte W03
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte Ds5 , v068
|
||||
.byte W03
|
||||
.byte Gn5 , v112
|
||||
.byte W21
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 112*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W96
|
||||
.byte An5
|
||||
.byte W24
|
||||
.byte Gn5
|
||||
.byte W24
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte Fn5
|
||||
.byte W24
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Fn4 , v064
|
||||
.byte W03
|
||||
.byte An4 , v072
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte Dn5 , v076
|
||||
.byte W03
|
||||
.byte Fn5 , v112
|
||||
.byte W44
|
||||
.byte W01
|
||||
.byte N01 , Dn5
|
||||
.byte W16
|
||||
.byte Ds5
|
||||
.byte W16
|
||||
.byte En5
|
||||
.byte W16
|
||||
.byte N03 , Fn5
|
||||
.byte W24
|
||||
.byte N01 , Gs5
|
||||
.byte W24
|
||||
.byte TEMPO , 130*bgm_end_tbs/2
|
||||
.byte W16
|
||||
.byte Gn5
|
||||
.byte W08
|
||||
.byte TEMPO , 126*bgm_end_tbs/2
|
||||
.byte W08
|
||||
.byte Dn5
|
||||
.byte W04
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W06
|
||||
.byte N03 , Gn4 , v068
|
||||
.byte W03
|
||||
.byte As4
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte Fn5 , v112
|
||||
.byte W24
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte Ds5
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W21
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte Dn5
|
||||
.byte W48
|
||||
.byte TEMPO , 130*bgm_end_tbs/2
|
||||
.byte Fn5
|
||||
.byte W24
|
||||
.byte TEMPO , 120*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte Ds3 , v064
|
||||
.byte W03
|
||||
.byte Gn3
|
||||
.byte W03
|
||||
.byte As3 , v068
|
||||
.byte W03
|
||||
.byte Ds4
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte An4 , v112
|
||||
.byte W12
|
||||
.byte As4
|
||||
.byte W09
|
||||
.byte Gn4 , v064
|
||||
.byte W03
|
||||
.byte Dn5
|
||||
.byte W03
|
||||
.byte Fn5 , v112
|
||||
.byte W68
|
||||
.byte W01
|
||||
.byte W48
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 108*bgm_end_tbs/2
|
||||
.byte W06
|
||||
.byte En4 , v068
|
||||
.byte W03
|
||||
.byte Gn4
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte An4 , v112
|
||||
.byte W12
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte Gn4 , v064
|
||||
.byte W03
|
||||
.byte En5
|
||||
.byte W03
|
||||
.byte Gn5 , v112
|
||||
.byte W72
|
||||
.byte W48
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte N01 , An5
|
||||
.byte W16
|
||||
.byte Gn5
|
||||
.byte W08
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W08
|
||||
.byte En5
|
||||
.byte W10
|
||||
.byte N03 , As4 , v060
|
||||
.byte W03
|
||||
.byte Cn5 , v064
|
||||
.byte W03
|
||||
bgm_end_1_000:
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte N03 , Fn5 , v112
|
||||
.byte W96
|
||||
.byte PEND
|
||||
.byte W90
|
||||
.byte Fn4 , v060
|
||||
.byte W03
|
||||
.byte As4 , v064
|
||||
.byte W03
|
||||
.byte Cn5 , v068
|
||||
.byte W03
|
||||
.byte Ds5 , v072
|
||||
.byte W03
|
||||
.byte Fn5 , v112
|
||||
.byte W90
|
||||
.byte W84
|
||||
.byte W03
|
||||
.byte As3 , v056
|
||||
.byte W03
|
||||
.byte Dn4 , v068
|
||||
.byte W03
|
||||
.byte Fn4
|
||||
.byte W03
|
||||
.byte As4 , v112
|
||||
.byte W03
|
||||
.byte Dn5
|
||||
.byte W44
|
||||
.byte W01
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte Ds5
|
||||
.byte W24
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_end_1_000
|
||||
.byte W24
|
||||
.byte N03 , Dn5 , v112
|
||||
.byte W24
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte Ds5
|
||||
.byte W24
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte Fn5
|
||||
.byte W18
|
||||
.byte As4 , v056
|
||||
.byte W03
|
||||
.byte Dn5 , v060
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte As5 , v112
|
||||
.byte W24
|
||||
.byte Fn5
|
||||
.byte W18
|
||||
.byte As4 , v060
|
||||
.byte W03
|
||||
.byte Dn5
|
||||
.byte W03
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte N01 , Ds5 , v112
|
||||
.byte W16
|
||||
.byte Fn5
|
||||
.byte W08
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte W08
|
||||
.byte Dn5
|
||||
.byte W04
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W12
|
||||
bgm_end_1_001:
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte N03 , Cn5 , v112
|
||||
.byte W96
|
||||
.byte PEND
|
||||
bgm_end_1_002:
|
||||
.byte W48
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 112*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W96
|
||||
.byte W48
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 108*bgm_end_tbs/2
|
||||
.byte W15
|
||||
.byte N03 , Cn4 , v056
|
||||
.byte W03
|
||||
.byte Ds4 , v060
|
||||
.byte W03
|
||||
.byte Fn4 , v064
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte An4
|
||||
.byte W03
|
||||
.byte Cn5 , v112
|
||||
.byte W44
|
||||
.byte W01
|
||||
.byte Dn5
|
||||
.byte W48
|
||||
.byte Ds5
|
||||
.byte W60
|
||||
.byte TEMPO , 134*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 126*bgm_end_tbs/2
|
||||
.byte W12
|
||||
bgm_end_1_003:
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte N03 , Cn5 , v112
|
||||
.byte W24
|
||||
.byte Dn5
|
||||
.byte W24
|
||||
.byte Ds5
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte An5
|
||||
.byte W24
|
||||
.byte Gn5
|
||||
.byte W24
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte An5
|
||||
.byte W24
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 102*bgm_end_tbs/2
|
||||
.byte Cn6
|
||||
.byte W06
|
||||
.byte Fn4 , v064
|
||||
.byte W03
|
||||
.byte As4 , v072
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte Dn5
|
||||
.byte W03
|
||||
.byte Fn5 , v112
|
||||
.byte W92
|
||||
.byte W01
|
||||
.byte PATT
|
||||
.word bgm_end_1_002
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W96
|
||||
.byte W48
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 112*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 102*bgm_end_tbs/2
|
||||
.byte W06
|
||||
.byte N03 , Dn4 , v064
|
||||
.byte W03
|
||||
.byte Fn4 , v068
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte As4
|
||||
.byte W03
|
||||
.byte Dn5 , v112
|
||||
.byte W44
|
||||
.byte W01
|
||||
.byte Ds5
|
||||
.byte W24
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 126*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_end_1_000
|
||||
.byte W24
|
||||
.byte N03 , Dn5 , v112
|
||||
.byte W24
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte Ds5
|
||||
.byte W24
|
||||
.byte TEMPO , 116*bgm_end_tbs/2
|
||||
.byte Fn5
|
||||
.byte W18
|
||||
.byte Dn5 , v064
|
||||
.byte W03
|
||||
.byte Fn5 , v068
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte As5 , v112
|
||||
.byte W24
|
||||
.byte Fn5
|
||||
.byte W18
|
||||
.byte An4 , v064
|
||||
.byte W03
|
||||
.byte Cn5
|
||||
.byte W03
|
||||
.byte TEMPO , 128*bgm_end_tbs/2
|
||||
.byte N01 , Ds5 , v112
|
||||
.byte W16
|
||||
.byte Fn5
|
||||
.byte W08
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W08
|
||||
.byte Dn5
|
||||
.byte W16
|
||||
.byte PATT
|
||||
.word bgm_end_1_001
|
||||
.byte W48
|
||||
.byte TEMPO , 126*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 108*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W96
|
||||
.byte W48
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 108*bgm_end_tbs/2
|
||||
.byte W15
|
||||
.byte N03 , Ds4 , v064
|
||||
.byte W03
|
||||
.byte Gn4 , v072
|
||||
.byte W03
|
||||
.byte An4
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte Cn5 , v112
|
||||
.byte W48
|
||||
.byte Dn5
|
||||
.byte W24
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte Ds5
|
||||
.byte W48
|
||||
.byte TEMPO , 134*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_end_1_003
|
||||
.byte N03 , An5 , v112
|
||||
.byte W24
|
||||
.byte Gn5
|
||||
.byte W24
|
||||
.byte TEMPO , 122*bgm_end_tbs/2
|
||||
.byte An5
|
||||
.byte W24
|
||||
.byte TEMPO , 102*bgm_end_tbs/2
|
||||
.byte W12
|
||||
.byte Cn6
|
||||
.byte W06
|
||||
.byte Dn5 , v060
|
||||
.byte W03
|
||||
.byte Fn5 , v068
|
||||
.byte W03
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte As5 , v064
|
||||
.byte W03
|
||||
.byte Dn6 , v112
|
||||
.byte W92
|
||||
.byte W01
|
||||
.byte W48
|
||||
.byte TEMPO , 130*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 112*bgm_end_tbs/2
|
||||
.byte W24
|
||||
.byte TEMPO , 138*bgm_end_tbs/2
|
||||
.byte W96
|
||||
.byte W24
|
||||
.byte TEMPO , 132*bgm_end_tbs/2
|
||||
.byte As3
|
||||
.byte W24
|
||||
.byte TEMPO , 118*bgm_end_tbs/2
|
||||
.byte Cn4
|
||||
.byte W24
|
||||
.byte TEMPO , 102*bgm_end_tbs/2
|
||||
.byte Dn4
|
||||
.byte W12
|
||||
.byte Ds3 , v064
|
||||
.byte W03
|
||||
.byte Gn3
|
||||
.byte W03
|
||||
.byte As3 , v068
|
||||
.byte W03
|
||||
.byte Ds4
|
||||
.byte W03
|
||||
.byte GOTO
|
||||
.word bgm_end_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_end_2:
|
||||
.byte KEYSH , bgm_end_key+0
|
||||
.byte VOICE , 24
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 36*bgm_end_mvl/mxv
|
||||
.byte N03 , Gs2 , v112
|
||||
.byte W24
|
||||
.byte Fn2
|
||||
.byte W24
|
||||
bgm_end_2_B1:
|
||||
bgm_end_2_000:
|
||||
.byte N03 , Ds2 , v112
|
||||
.byte W24
|
||||
.byte As2 , v068
|
||||
.byte W24
|
||||
.byte Gn3
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_001:
|
||||
.byte N03 , Gn3 , v068
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte Gn3
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_002:
|
||||
.byte N03 , Ds2 , v112
|
||||
.byte W24
|
||||
.byte Cn3 , v068
|
||||
.byte W24
|
||||
.byte An3
|
||||
.byte W24
|
||||
.byte Cn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_003:
|
||||
.byte N03 , An3 , v068
|
||||
.byte W24
|
||||
.byte Cn3
|
||||
.byte W24
|
||||
.byte An3
|
||||
.byte W24
|
||||
.byte Cn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_004:
|
||||
.byte N03 , Dn2 , v112
|
||||
.byte W24
|
||||
.byte An2 , v068
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_005:
|
||||
.byte N03 , Fn3 , v068
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte Gn2 , v112
|
||||
.byte W48
|
||||
.byte Fs2
|
||||
.byte W48
|
||||
.byte Fn2
|
||||
.byte W48
|
||||
.byte En2
|
||||
.byte W48
|
||||
.byte PATT
|
||||
.word bgm_end_2_000
|
||||
.byte PATT
|
||||
.word bgm_end_2_001
|
||||
.byte PATT
|
||||
.word bgm_end_2_002
|
||||
.byte PATT
|
||||
.word bgm_end_2_003
|
||||
.byte PATT
|
||||
.word bgm_end_2_004
|
||||
.byte PATT
|
||||
.word bgm_end_2_005
|
||||
.byte N01 , Gn3 , v112
|
||||
.byte W32
|
||||
.byte Dn3 , v100
|
||||
.byte W16
|
||||
.byte Fn3 , v112
|
||||
.byte W16
|
||||
.byte Dn3 , v100
|
||||
.byte W16
|
||||
.byte Bn2 , v112
|
||||
.byte W16
|
||||
.byte Dn3
|
||||
.byte W32
|
||||
.byte Gn2 , v100
|
||||
.byte W16
|
||||
.byte Bn2 , v112
|
||||
.byte W16
|
||||
.byte Gn2 , v100
|
||||
.byte W16
|
||||
.byte Fn2 , v112
|
||||
.byte W16
|
||||
.byte N03 , Ds2
|
||||
.byte W24
|
||||
.byte As2 , v072
|
||||
.byte W24
|
||||
.byte Gn3 , v068
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_end_2_001
|
||||
.byte N03 , En2 , v112
|
||||
.byte W24
|
||||
.byte As2 , v068
|
||||
.byte W24
|
||||
.byte Gn3
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_end_2_001
|
||||
.byte N03 , Fn2 , v112
|
||||
.byte W24
|
||||
.byte As2 , v068
|
||||
.byte W24
|
||||
.byte Cn3
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte As3
|
||||
.byte W24
|
||||
.byte Cn4
|
||||
.byte W24
|
||||
.byte Ds4
|
||||
.byte W24
|
||||
.byte Cn4 , v080
|
||||
.byte W96
|
||||
.byte W96
|
||||
bgm_end_2_006:
|
||||
.byte N03 , As2 , v112
|
||||
.byte W24
|
||||
.byte Fn3 , v068
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_007:
|
||||
.byte N03 , As2 , v112
|
||||
.byte W24
|
||||
.byte Gn3 , v068
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte Gn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_008:
|
||||
.byte N03 , As2 , v112
|
||||
.byte W24
|
||||
.byte An3 , v068
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte An3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte As2 , v112
|
||||
.byte W24
|
||||
.byte As3 , v068
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
bgm_end_2_009:
|
||||
.byte N03 , Fn2 , v112
|
||||
.byte W24
|
||||
.byte Cn3 , v068
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte Cn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_010:
|
||||
.byte N03 , Fn2 , v112
|
||||
.byte W24
|
||||
.byte Dn3 , v068
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_011:
|
||||
.byte N03 , Fn2 , v112
|
||||
.byte W24
|
||||
.byte Ds3 , v068
|
||||
.byte W24
|
||||
.byte An2
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
bgm_end_2_012:
|
||||
.byte N03 , Fn2 , v112
|
||||
.byte W24
|
||||
.byte Fn3 , v068
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_end_2_011
|
||||
bgm_end_2_013:
|
||||
.byte N03 , Fn2 , v112
|
||||
.byte W24
|
||||
.byte Fn3 , v068
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte Cn3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_end_2_011
|
||||
.byte PATT
|
||||
.word bgm_end_2_013
|
||||
.byte PATT
|
||||
.word bgm_end_2_006
|
||||
.byte PATT
|
||||
.word bgm_end_2_007
|
||||
.byte PATT
|
||||
.word bgm_end_2_008
|
||||
.byte N03 , As2 , v112
|
||||
.byte W24
|
||||
.byte Cn4 , v068
|
||||
.byte W24
|
||||
.byte As3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_end_2_006
|
||||
.byte PATT
|
||||
.word bgm_end_2_007
|
||||
.byte PATT
|
||||
.word bgm_end_2_008
|
||||
.byte N03 , As2 , v112
|
||||
.byte W24
|
||||
.byte As3 , v068
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte As3
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_end_2_009
|
||||
.byte PATT
|
||||
.word bgm_end_2_010
|
||||
.byte PATT
|
||||
.word bgm_end_2_011
|
||||
.byte PATT
|
||||
.word bgm_end_2_012
|
||||
.byte PATT
|
||||
.word bgm_end_2_011
|
||||
.byte PATT
|
||||
.word bgm_end_2_013
|
||||
.byte PATT
|
||||
.word bgm_end_2_011
|
||||
.byte PATT
|
||||
.word bgm_end_2_013
|
||||
.byte N03 , As3 , v112
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte An3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte Gs3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte Fn3
|
||||
.byte W24
|
||||
.byte Dn3
|
||||
.byte W24
|
||||
.byte As2
|
||||
.byte W24
|
||||
.byte Gs2
|
||||
.byte W24
|
||||
.byte Fn2
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_end_2_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_end:
|
||||
.byte 2 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_end_pri @ Priority
|
||||
.byte bgm_end_rev @ Reverb.
|
||||
|
||||
.word bgm_end_grp
|
||||
|
||||
.word bgm_end_1
|
||||
.word bgm_end_2
|
||||
|
||||
.end
|
||||
677
sound/songs/bgm_event0.s
Normal file
677
sound/songs/bgm_event0.s
Normal file
@ -0,0 +1,677 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_event0_grp, voicegroup_8684848
|
||||
.equ bgm_event0_pri, 0
|
||||
.equ bgm_event0_rev, reverb_set+50
|
||||
.equ bgm_event0_mvl, 127
|
||||
.equ bgm_event0_key, 0
|
||||
.equ bgm_event0_tbs, 1
|
||||
.equ bgm_event0_exg, 0
|
||||
.equ bgm_event0_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_event0
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_event0_1:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte TEMPO , 136*bgm_event0_tbs/2
|
||||
.byte VOICE , 60
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 49*bgm_event0_mvl/mxv
|
||||
.byte N03 , Dn5 , v112
|
||||
.byte W03
|
||||
.byte Ds5
|
||||
.byte W03
|
||||
.byte N06 , Gn5
|
||||
.byte W06
|
||||
.byte Fs5
|
||||
.byte W06
|
||||
.byte Fn5
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W12
|
||||
.byte Dn5
|
||||
.byte W12
|
||||
.byte Cn5
|
||||
.byte W12
|
||||
.byte Bn4
|
||||
.byte W18
|
||||
.byte TEMPO , 112*bgm_event0_tbs/2
|
||||
.byte N24 , As4
|
||||
.byte W15
|
||||
.byte TEMPO , 156*bgm_event0_tbs/2
|
||||
.byte W09
|
||||
bgm_event0_1_B1:
|
||||
bgm_event0_1_000:
|
||||
.byte W12
|
||||
.byte N09 , Gn4 , v112
|
||||
.byte W09
|
||||
.byte N06 , Gn4 , v036
|
||||
.byte W09
|
||||
.byte N03 , Gn4 , v112
|
||||
.byte W03
|
||||
.byte N06 , Gn4 , v036
|
||||
.byte W24
|
||||
.byte W03
|
||||
.byte N09 , Gs4 , v112
|
||||
.byte W09
|
||||
.byte N06 , Gs4 , v036
|
||||
.byte W09
|
||||
.byte N03 , Gs4 , v112
|
||||
.byte W03
|
||||
.byte N06 , Gs4 , v036
|
||||
.byte W15
|
||||
.byte PEND
|
||||
.byte W12
|
||||
.byte N09 , An4 , v112
|
||||
.byte W09
|
||||
.byte N06 , An4 , v036
|
||||
.byte W09
|
||||
.byte N03 , An4 , v112
|
||||
.byte W03
|
||||
.byte N06 , An4 , v036
|
||||
.byte W24
|
||||
.byte W03
|
||||
.byte N09 , Gs4 , v112
|
||||
.byte W09
|
||||
.byte N06 , Gs4 , v036
|
||||
.byte W09
|
||||
.byte N03 , Gs4 , v112
|
||||
.byte W03
|
||||
.byte N06 , Gs4 , v036
|
||||
.byte W15
|
||||
.byte PATT
|
||||
.word bgm_event0_1_000
|
||||
.byte W12
|
||||
.byte N09 , An4 , v112
|
||||
.byte W09
|
||||
.byte N06 , An4 , v036
|
||||
.byte W09
|
||||
.byte N03 , An4 , v112
|
||||
.byte W03
|
||||
.byte N06 , An4 , v036
|
||||
.byte W24
|
||||
.byte W03
|
||||
.byte N03 , As4 , v124
|
||||
.byte W06
|
||||
.byte As4 , v112
|
||||
.byte W06
|
||||
.byte As4 , v104
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte As4 , v116
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_event0_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_event0_2:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte VOICE , 38
|
||||
.byte PAN , c_v+7
|
||||
.byte VOL , 78*bgm_event0_mvl/mxv
|
||||
.byte W06
|
||||
.byte W66
|
||||
.byte N06 , Gn2 , v112
|
||||
.byte W06
|
||||
.byte N24 , Gn1
|
||||
.byte W24
|
||||
bgm_event0_2_B1:
|
||||
bgm_event0_2_000:
|
||||
.byte N12 , Cn1 , v112
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte Cn1
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Cn2
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_event0_2_000
|
||||
.byte N12 , Cn1 , v112
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Gn1
|
||||
.byte W12
|
||||
.byte N03 , Gn2 , v124
|
||||
.byte W12
|
||||
.byte Gn1 , v104
|
||||
.byte W06
|
||||
.byte Bn1 , v112
|
||||
.byte W06
|
||||
.byte Fn2 , v104
|
||||
.byte W06
|
||||
.byte Gn2 , v112
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_event0_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_event0_3:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte VOICE , 73
|
||||
.byte PAN , c_v-46
|
||||
.byte VOL , 39*bgm_event0_mvl/mxv
|
||||
.byte W06
|
||||
.byte N06 , Bn4 , v112
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
.byte An4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W12
|
||||
.byte Fn4
|
||||
.byte W12
|
||||
.byte Ds4
|
||||
.byte W12
|
||||
.byte Dn4
|
||||
.byte W18
|
||||
.byte N24 , Fn4
|
||||
.byte W24
|
||||
bgm_event0_3_B1:
|
||||
bgm_event0_3_000:
|
||||
.byte W12
|
||||
.byte N09 , Cn4 , v112
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W30
|
||||
.byte N09 , Cs4
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte PEND
|
||||
.byte W12
|
||||
.byte N09 , Dn4
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W30
|
||||
.byte N09 , Cs4
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte PATT
|
||||
.word bgm_event0_3_000
|
||||
.byte W12
|
||||
.byte N09 , Dn4 , v112
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W30
|
||||
.byte Fn4 , v124
|
||||
.byte W06
|
||||
.byte Fn4 , v112
|
||||
.byte W06
|
||||
.byte Fn4 , v104
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Fn4 , v116
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_event0_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_event0_4:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte VOICE , 87
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 48*bgm_event0_mvl/mxv
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 12
|
||||
.byte xIECV , 22
|
||||
.byte BENDR , 12
|
||||
.byte BEND , c_v+2
|
||||
.byte W06
|
||||
.byte W66
|
||||
.byte N06 , Gn2 , v112
|
||||
.byte W06
|
||||
.byte N24 , Gn1
|
||||
.byte W24
|
||||
bgm_event0_4_B1:
|
||||
bgm_event0_4_000:
|
||||
.byte N12 , Cn1 , v112
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte Cn1
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Cn2
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_event0_4_000
|
||||
.byte N12 , Cn1 , v112
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Cn1
|
||||
.byte W12
|
||||
.byte N03 , Cn2
|
||||
.byte W12
|
||||
.byte N12 , Gn1
|
||||
.byte W12
|
||||
.byte N03 , Gn2 , v124
|
||||
.byte W12
|
||||
.byte Gn1 , v104
|
||||
.byte W06
|
||||
.byte Bn1 , v112
|
||||
.byte W06
|
||||
.byte Fn2 , v104
|
||||
.byte W06
|
||||
.byte Gn2 , v112
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_event0_4_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_event0_5:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte VOICE , 82
|
||||
.byte PAN , c_v+63
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 12
|
||||
.byte xIECV , 22
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 50*bgm_event0_mvl/mxv
|
||||
.byte W06
|
||||
.byte W66
|
||||
.byte N06 , Bn2 , v084
|
||||
.byte W06
|
||||
.byte N24 , Gn3 , v088
|
||||
.byte W24
|
||||
bgm_event0_5_B1:
|
||||
bgm_event0_5_000:
|
||||
.byte PAN , c_v-62
|
||||
.byte N03 , Gn3 , v096
|
||||
.byte W06
|
||||
.byte Ds3 , v048
|
||||
.byte W06
|
||||
.byte Cn3
|
||||
.byte W06
|
||||
.byte Gn2
|
||||
.byte W06
|
||||
.byte PAN , c_v+63
|
||||
.byte N03 , Gn3 , v096
|
||||
.byte W06
|
||||
.byte Ds3 , v048
|
||||
.byte W06
|
||||
.byte Cn3
|
||||
.byte W06
|
||||
.byte Gn2
|
||||
.byte W06
|
||||
.byte PAN , c_v-62
|
||||
.byte N03 , Gs3 , v096
|
||||
.byte W06
|
||||
.byte En3 , v048
|
||||
.byte W06
|
||||
.byte Cs3
|
||||
.byte W06
|
||||
.byte Gs2
|
||||
.byte W06
|
||||
.byte PAN , c_v+63
|
||||
.byte N03 , Gs3 , v096
|
||||
.byte W06
|
||||
.byte En3 , v048
|
||||
.byte W06
|
||||
.byte Cs3
|
||||
.byte W06
|
||||
.byte Gs2
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte PAN , c_v-62
|
||||
.byte N03 , An3 , v096
|
||||
.byte W06
|
||||
.byte Fn3 , v048
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte An2
|
||||
.byte W06
|
||||
.byte PAN , c_v+63
|
||||
.byte N03 , An3 , v096
|
||||
.byte W06
|
||||
.byte Fn3 , v048
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte An2
|
||||
.byte W06
|
||||
.byte PAN , c_v-62
|
||||
.byte N03 , Gs3 , v096
|
||||
.byte W06
|
||||
.byte En3 , v048
|
||||
.byte W06
|
||||
.byte Cs3
|
||||
.byte W06
|
||||
.byte Gs2
|
||||
.byte W06
|
||||
.byte PAN , c_v+63
|
||||
.byte N03 , Gs3 , v096
|
||||
.byte W06
|
||||
.byte En3 , v048
|
||||
.byte W06
|
||||
.byte Cs3
|
||||
.byte W06
|
||||
.byte Gs2
|
||||
.byte W06
|
||||
.byte PATT
|
||||
.word bgm_event0_5_000
|
||||
.byte PAN , c_v-62
|
||||
.byte N03 , An3 , v096
|
||||
.byte W06
|
||||
.byte Fn3 , v048
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte An2
|
||||
.byte W06
|
||||
.byte PAN , c_v+63
|
||||
.byte N03 , An3 , v096
|
||||
.byte W06
|
||||
.byte Fn3 , v048
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte An2
|
||||
.byte W06
|
||||
.byte PAN , c_v+0
|
||||
.byte N04 , As3 , v100
|
||||
.byte W08
|
||||
.byte Fn3 , v084
|
||||
.byte W08
|
||||
.byte Bn2
|
||||
.byte W08
|
||||
.byte N03 , Gn2 , v112
|
||||
.byte W06
|
||||
.byte Bn2
|
||||
.byte W06
|
||||
.byte Dn3
|
||||
.byte W06
|
||||
.byte Fn3
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_event0_5_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_event0_6:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte VOICE , 80
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 12
|
||||
.byte xIECV , 22
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 40*bgm_event0_mvl/mxv
|
||||
.byte W06
|
||||
.byte W66
|
||||
.byte N06 , Gn3 , v112
|
||||
.byte W06
|
||||
.byte N24 , Bn3
|
||||
.byte W24
|
||||
bgm_event0_6_B1:
|
||||
bgm_event0_6_000:
|
||||
.byte N12 , Ds3 , v112
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W30
|
||||
.byte N12 , En3
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W30
|
||||
.byte PEND
|
||||
.byte N12 , Fn3
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W30
|
||||
.byte N12 , En3
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W30
|
||||
.byte PATT
|
||||
.word bgm_event0_6_000
|
||||
.byte N12 , Fn3 , v112
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W42
|
||||
.byte N03 , Bn3 , v124
|
||||
.byte W06
|
||||
.byte Bn3 , v112
|
||||
.byte W06
|
||||
.byte Bn3 , v104
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Bn3 , v116
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_event0_6_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_event0_7:
|
||||
.byte KEYSH , bgm_event0_key+0
|
||||
.byte VOICE , 0
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 62*bgm_event0_mvl/mxv
|
||||
.byte W06
|
||||
.byte N06 , En1 , v112
|
||||
.byte W06
|
||||
.byte En1 , v080
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v092
|
||||
.byte W12
|
||||
.byte En1 , v080
|
||||
.byte W12
|
||||
.byte En1 , v088
|
||||
.byte W12
|
||||
.byte En1 , v112
|
||||
.byte W12
|
||||
.byte Cn1
|
||||
.byte W06
|
||||
.byte Dn1
|
||||
.byte N24 , An2
|
||||
.byte W12
|
||||
.byte N06 , En1
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
bgm_event0_7_B1:
|
||||
bgm_event0_7_000:
|
||||
.byte N06 , Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte N12 , As1 , v112
|
||||
.byte W12
|
||||
.byte N06 , Fs1
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte N12 , As1 , v112
|
||||
.byte W12
|
||||
.byte N06 , Fs1
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte En1 , v127
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte PATT
|
||||
.word bgm_event0_7_000
|
||||
.byte N06 , Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte Fs1 , v096
|
||||
.byte W06
|
||||
.byte Fs1 , v068
|
||||
.byte W06
|
||||
.byte Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v072
|
||||
.byte W06
|
||||
.byte N12 , As1 , v096
|
||||
.byte W12
|
||||
.byte N06 , Fs1 , v112
|
||||
.byte W06
|
||||
.byte Fs1 , v108
|
||||
.byte W06
|
||||
.byte N12 , As1 , v112
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_event0_7_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_event0:
|
||||
.byte 7 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_event0_pri @ Priority
|
||||
.byte bgm_event0_rev @ Reverb.
|
||||
|
||||
.word bgm_event0_grp
|
||||
|
||||
.word bgm_event0_1
|
||||
.word bgm_event0_2
|
||||
.word bgm_event0_3
|
||||
.word bgm_event0_4
|
||||
.word bgm_event0_5
|
||||
.word bgm_event0_6
|
||||
.word bgm_event0_7
|
||||
|
||||
.end
|
||||
179
sound/songs/bgm_fanfa1.s
Normal file
179
sound/songs/bgm_fanfa1.s
Normal file
@ -0,0 +1,179 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_fanfa1_grp, voicegroup_8677B28
|
||||
.equ bgm_fanfa1_pri, 5
|
||||
.equ bgm_fanfa1_rev, reverb_set+50
|
||||
.equ bgm_fanfa1_mvl, 127
|
||||
.equ bgm_fanfa1_key, 0
|
||||
.equ bgm_fanfa1_tbs, 1
|
||||
.equ bgm_fanfa1_exg, 0
|
||||
.equ bgm_fanfa1_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_fanfa1
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_fanfa1_1:
|
||||
.byte KEYSH , bgm_fanfa1_key+0
|
||||
.byte TEMPO , 174*bgm_fanfa1_tbs/2
|
||||
.byte VOICE , 46
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte VOL , 90*bgm_fanfa1_mvl/mxv
|
||||
.byte PAN , c_v+48
|
||||
.byte W08
|
||||
.byte N04 , Bn3 , v100
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N24 , Gs4
|
||||
.byte W10
|
||||
.byte MOD , 5
|
||||
.byte W54
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_fanfa1_2:
|
||||
.byte KEYSH , bgm_fanfa1_key+0
|
||||
.byte VOICE , 46
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte VOL , 90*bgm_fanfa1_mvl/mxv
|
||||
.byte W08
|
||||
.byte PAN , c_v-16
|
||||
.byte N04 , En4 , v100
|
||||
.byte W08
|
||||
.byte PAN , c_v+16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte PAN , c_v-16
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte PAN , c_v+0
|
||||
.byte N24 , Bn4
|
||||
.byte W10
|
||||
.byte MOD , 5
|
||||
.byte W54
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_fanfa1_3:
|
||||
.byte KEYSH , bgm_fanfa1_key+0
|
||||
.byte VOICE , 46
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte VOL , 90*bgm_fanfa1_mvl/mxv
|
||||
.byte PAN , c_v-48
|
||||
.byte W08
|
||||
.byte N04 , Gs3 , v068
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N24 , En4
|
||||
.byte W10
|
||||
.byte MOD , 5
|
||||
.byte W54
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_fanfa1_4:
|
||||
.byte KEYSH , bgm_fanfa1_key+0
|
||||
.byte VOICE , 84
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte VOL , 90*bgm_fanfa1_mvl/mxv
|
||||
.byte W08
|
||||
.byte N04 , Bn3 , v048
|
||||
.byte W04
|
||||
.byte Bn3 , v020
|
||||
.byte W04
|
||||
.byte Bn3 , v048
|
||||
.byte W04
|
||||
.byte Bn3 , v020
|
||||
.byte W04
|
||||
.byte Bn3 , v048
|
||||
.byte W04
|
||||
.byte Bn3 , v020
|
||||
.byte W04
|
||||
.byte N24 , Gs4 , v048
|
||||
.byte W10
|
||||
.byte MOD , 5
|
||||
.byte W03
|
||||
.byte VOL , 71*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 48*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 25*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 10*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 0*bgm_fanfa1_mvl/mxv
|
||||
.byte W36
|
||||
.byte W03
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_fanfa1_5:
|
||||
.byte KEYSH , bgm_fanfa1_key+0
|
||||
.byte VOICE , 85
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte VOL , 90*bgm_fanfa1_mvl/mxv
|
||||
.byte W08
|
||||
.byte N04 , En4 , v048
|
||||
.byte W04
|
||||
.byte En4 , v020
|
||||
.byte W04
|
||||
.byte En4 , v048
|
||||
.byte W04
|
||||
.byte En4 , v020
|
||||
.byte W04
|
||||
.byte En4 , v048
|
||||
.byte W04
|
||||
.byte En4 , v020
|
||||
.byte W04
|
||||
.byte N24 , Bn4 , v048
|
||||
.byte W10
|
||||
.byte MOD , 5
|
||||
.byte W03
|
||||
.byte VOL , 71*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 48*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 25*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 10*bgm_fanfa1_mvl/mxv
|
||||
.byte W03
|
||||
.byte 0*bgm_fanfa1_mvl/mxv
|
||||
.byte W36
|
||||
.byte W03
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_fanfa1:
|
||||
.byte 5 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_fanfa1_pri @ Priority
|
||||
.byte bgm_fanfa1_rev @ Reverb.
|
||||
|
||||
.word bgm_fanfa1_grp
|
||||
|
||||
.word bgm_fanfa1_1
|
||||
.word bgm_fanfa1_2
|
||||
.word bgm_fanfa1_3
|
||||
.word bgm_fanfa1_4
|
||||
.word bgm_fanfa1_5
|
||||
|
||||
.end
|
||||
283
sound/songs/bgm_fanfa4.s
Normal file
283
sound/songs/bgm_fanfa4.s
Normal file
@ -0,0 +1,283 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_fanfa4_grp, voicegroup_8677B28
|
||||
.equ bgm_fanfa4_pri, 5
|
||||
.equ bgm_fanfa4_rev, reverb_set+50
|
||||
.equ bgm_fanfa4_mvl, 127
|
||||
.equ bgm_fanfa4_key, 0
|
||||
.equ bgm_fanfa4_tbs, 1
|
||||
.equ bgm_fanfa4_exg, 0
|
||||
.equ bgm_fanfa4_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_fanfa4
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_fanfa4_1:
|
||||
.byte KEYSH , bgm_fanfa4_key+0
|
||||
.byte W12
|
||||
.byte TEMPO , 190*bgm_fanfa4_tbs/2
|
||||
.byte VOICE , 46
|
||||
.byte VOL , 90*bgm_fanfa4_mvl/mxv
|
||||
.byte PAN , c_v-24
|
||||
.byte N16 , Gs4 , v080
|
||||
.byte W08
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte 0
|
||||
.byte W08
|
||||
.byte N06 , Ds4
|
||||
.byte W08
|
||||
.byte Gs4
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte N08 , As4
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N48 , Gs4
|
||||
.byte W16
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte VOL , 82*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 72*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte 41*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 14*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte MOD , 0
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_fanfa4_2:
|
||||
.byte KEYSH , bgm_fanfa4_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 46
|
||||
.byte VOL , 90*bgm_fanfa4_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N16 , Cn5 , v104
|
||||
.byte W08
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte 0
|
||||
.byte W08
|
||||
.byte N06
|
||||
.byte W08
|
||||
.byte N06
|
||||
.byte W08
|
||||
.byte N06
|
||||
.byte W08
|
||||
.byte N08 , Cs5
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N48 , Cn5
|
||||
.byte W16
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte VOL , 82*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 72*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte 41*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 14*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte MOD , 0
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_fanfa4_3:
|
||||
.byte KEYSH , bgm_fanfa4_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 58
|
||||
.byte VOL , 90*bgm_fanfa4_mvl/mxv
|
||||
.byte N16 , Gs1 , v120
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W08
|
||||
.byte N06
|
||||
.byte W08
|
||||
.byte N06
|
||||
.byte W08
|
||||
.byte N08 , Fs1
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte Gn1
|
||||
.byte W16
|
||||
.byte N48 , Gs1
|
||||
.byte W24
|
||||
.byte VOL , 82*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 72*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte 41*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 14*bgm_fanfa4_mvl/mxv
|
||||
.byte W54
|
||||
.byte W01
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_fanfa4_4:
|
||||
.byte KEYSH , bgm_fanfa4_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 82
|
||||
.byte VOL , 90*bgm_fanfa4_mvl/mxv
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte PAN , c_v-48
|
||||
.byte N16 , Cn4 , v036
|
||||
.byte W08
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte 0
|
||||
.byte W08
|
||||
.byte N06 , Gs3
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte N08 , As3
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N48 , Gs3
|
||||
.byte W16
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte VOL , 82*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 72*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte 41*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 14*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte MOD , 0
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_fanfa4_5:
|
||||
.byte KEYSH , bgm_fanfa4_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 83
|
||||
.byte VOL , 90*bgm_fanfa4_mvl/mxv
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte PAN , c_v+48
|
||||
.byte N16 , Gs3 , v036
|
||||
.byte W08
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte 0
|
||||
.byte W08
|
||||
.byte N06 , Ds3
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte Ds3
|
||||
.byte W08
|
||||
.byte N08 , Fs3
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N48 , Ds3
|
||||
.byte W16
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte VOL , 82*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 72*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte 41*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 14*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte MOD , 0
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_fanfa4_6:
|
||||
.byte KEYSH , bgm_fanfa4_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 46
|
||||
.byte PAN , c_v+24
|
||||
.byte VOL , 90*bgm_fanfa4_mvl/mxv
|
||||
.byte N16 , Ds4 , v080
|
||||
.byte W08
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte 0
|
||||
.byte W08
|
||||
.byte N06 , Cn4
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte N08 , Fs4
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N08
|
||||
.byte W16
|
||||
.byte N48 , Ds4
|
||||
.byte W16
|
||||
.byte MOD , 5
|
||||
.byte W08
|
||||
.byte VOL , 82*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 72*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte 41*bgm_fanfa4_mvl/mxv
|
||||
.byte W05
|
||||
.byte 14*bgm_fanfa4_mvl/mxv
|
||||
.byte W07
|
||||
.byte MOD , 0
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_fanfa4:
|
||||
.byte 6 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_fanfa4_pri @ Priority
|
||||
.byte bgm_fanfa4_rev @ Reverb.
|
||||
|
||||
.word bgm_fanfa4_grp
|
||||
|
||||
.word bgm_fanfa4_1
|
||||
.word bgm_fanfa4_2
|
||||
.word bgm_fanfa4_3
|
||||
.word bgm_fanfa4_4
|
||||
.word bgm_fanfa4_5
|
||||
.word bgm_fanfa4_6
|
||||
|
||||
.end
|
||||
350
sound/songs/bgm_fanfa5.s
Normal file
350
sound/songs/bgm_fanfa5.s
Normal file
@ -0,0 +1,350 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_fanfa5_grp, voicegroup_8677B28
|
||||
.equ bgm_fanfa5_pri, 5
|
||||
.equ bgm_fanfa5_rev, reverb_set+50
|
||||
.equ bgm_fanfa5_mvl, 127
|
||||
.equ bgm_fanfa5_key, 0
|
||||
.equ bgm_fanfa5_tbs, 1
|
||||
.equ bgm_fanfa5_exg, 0
|
||||
.equ bgm_fanfa5_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_fanfa5
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_fanfa5_1:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte TEMPO , 150*bgm_fanfa5_tbs/2
|
||||
.byte VOICE , 56
|
||||
.byte PAN , c_v+18
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N22 , Ds4 , v104
|
||||
.byte W16
|
||||
.byte VOL , 68*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 36*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N22 , Cn4
|
||||
.byte W16
|
||||
.byte VOL , 68*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 36*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N16 , Gs3
|
||||
.byte W16
|
||||
.byte N06 , Ds3
|
||||
.byte W08
|
||||
.byte Cn3
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte N04 , Fs4
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte As4
|
||||
.byte W08
|
||||
.byte N48 , Gs4
|
||||
.byte W16
|
||||
.byte MOD , 6
|
||||
.byte W32
|
||||
.byte 0
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_fanfa5_2:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 56
|
||||
.byte PAN , c_v-16
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N22 , Cn5 , v104
|
||||
.byte W16
|
||||
.byte VOL , 68*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 36*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N22 , Gs4
|
||||
.byte W16
|
||||
.byte VOL , 68*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 36*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N40 , Ds4
|
||||
.byte W12
|
||||
.byte MOD , 6
|
||||
.byte W28
|
||||
.byte VOL , 68*bgm_fanfa5_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte W04
|
||||
.byte VOL , 36*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N04 , Cs5
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte As4
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte Cs5
|
||||
.byte W08
|
||||
.byte N48 , Cn5
|
||||
.byte W16
|
||||
.byte MOD , 6
|
||||
.byte W32
|
||||
.byte 0
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_fanfa5_3:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 88
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N12 , Ds1 , v112
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N08 , Cn1
|
||||
.byte W08
|
||||
.byte Ds1
|
||||
.byte W08
|
||||
.byte Gs1
|
||||
.byte W08
|
||||
.byte N16 , As1
|
||||
.byte W24
|
||||
.byte Cs2
|
||||
.byte W24
|
||||
.byte N40 , Cn2
|
||||
.byte W48
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_fanfa5_4:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 82
|
||||
.byte PAN , c_v-48
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N08 , Gs4 , v040
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N08 , Gs4
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte Ds3
|
||||
.byte W08
|
||||
.byte Cs3
|
||||
.byte W08
|
||||
.byte As2
|
||||
.byte W08
|
||||
.byte Fs2
|
||||
.byte W08
|
||||
.byte Cs2
|
||||
.byte W08
|
||||
.byte As2
|
||||
.byte W08
|
||||
.byte Cs3
|
||||
.byte W08
|
||||
.byte N48 , Ds3
|
||||
.byte W16
|
||||
.byte MOD , 6
|
||||
.byte W32
|
||||
.byte 0
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_fanfa5_5:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 83
|
||||
.byte PAN , c_v+48
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte N08 , Gs4 , v040
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W04
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte W04
|
||||
.byte N08 , Gs4
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Ds4
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte Cn4
|
||||
.byte W08
|
||||
.byte Gs3
|
||||
.byte W08
|
||||
.byte Ds3
|
||||
.byte W04
|
||||
.byte W04
|
||||
.byte Cs3
|
||||
.byte W08
|
||||
.byte As2
|
||||
.byte W08
|
||||
.byte Fs2
|
||||
.byte W08
|
||||
.byte Cs2
|
||||
.byte W08
|
||||
.byte As2
|
||||
.byte W08
|
||||
.byte Cs3
|
||||
.byte W08
|
||||
.byte N44 , Ds3
|
||||
.byte W12
|
||||
.byte MOD , 6
|
||||
.byte W32
|
||||
.byte 0
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_fanfa5_6:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 47
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte W24
|
||||
.byte 90*bgm_fanfa5_mvl/mxv
|
||||
.byte W56
|
||||
.byte N08 , Cn2 , v127
|
||||
.byte W08
|
||||
.byte N08
|
||||
.byte W08
|
||||
.byte Fs2
|
||||
.byte W24
|
||||
.byte Cs2
|
||||
.byte W08
|
||||
.byte As1 , v112
|
||||
.byte W08
|
||||
.byte N08
|
||||
.byte W08
|
||||
.byte N12 , Cn2 , v127
|
||||
.byte W48
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_fanfa5_7:
|
||||
.byte KEYSH , bgm_fanfa5_key+0
|
||||
.byte W12
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N04 , En1 , v112
|
||||
.byte N80 , An2 , v120
|
||||
.byte W24
|
||||
.byte VOL , 90*bgm_fanfa5_mvl/mxv
|
||||
.byte N04 , En1 , v112
|
||||
.byte W08
|
||||
.byte En1 , v092
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte En1 , v112
|
||||
.byte W16
|
||||
.byte En1 , v092
|
||||
.byte W08
|
||||
.byte En1 , v112
|
||||
.byte W08
|
||||
.byte En1 , v092
|
||||
.byte W08
|
||||
.byte N04
|
||||
.byte W08
|
||||
.byte En1 , v112
|
||||
.byte W16
|
||||
.byte En1 , v092
|
||||
.byte W08
|
||||
.byte En1 , v112
|
||||
.byte W08
|
||||
.byte En1 , v092
|
||||
.byte W04
|
||||
.byte En1 , v112
|
||||
.byte W04
|
||||
.byte En1 , v092
|
||||
.byte W04
|
||||
.byte N04
|
||||
.byte W04
|
||||
.byte En1 , v112
|
||||
.byte W48
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_fanfa5:
|
||||
.byte 7 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_fanfa5_pri @ Priority
|
||||
.byte bgm_fanfa5_rev @ Reverb.
|
||||
|
||||
.word bgm_fanfa5_grp
|
||||
|
||||
.word bgm_fanfa5_1
|
||||
.word bgm_fanfa5_2
|
||||
.word bgm_fanfa5_3
|
||||
.word bgm_fanfa5_4
|
||||
.word bgm_fanfa5_5
|
||||
.word bgm_fanfa5_6
|
||||
.word bgm_fanfa5_7
|
||||
|
||||
.end
|
||||
859
sound/songs/bgm_fanfa_rayquaza.s
Normal file
859
sound/songs/bgm_fanfa_rayquaza.s
Normal file
@ -0,0 +1,859 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_fanfa_rayquaza_grp, voicegroup_8697670
|
||||
.equ bgm_fanfa_rayquaza_pri, 0
|
||||
.equ bgm_fanfa_rayquaza_rev, reverb_set+50
|
||||
.equ bgm_fanfa_rayquaza_mvl, 127
|
||||
.equ bgm_fanfa_rayquaza_key, 0
|
||||
.equ bgm_fanfa_rayquaza_tbs, 1
|
||||
.equ bgm_fanfa_rayquaza_exg, 0
|
||||
.equ bgm_fanfa_rayquaza_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_fanfa_rayquaza
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_1:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte TEMPO , 120*bgm_fanfa_rayquaza_tbs/2
|
||||
.byte VOICE , 19
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte PAN , c_v-32
|
||||
.byte TIE , Dn4 , v100
|
||||
.byte W60
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W84
|
||||
.byte EOT
|
||||
.byte W12
|
||||
.byte TIE
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte TIE
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte VOL , 77*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 75*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 72*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 70*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 68*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 65*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 63*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 60*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 59*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 56*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 55*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 53*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 48*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 47*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 43*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 36*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 31*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 30*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 27*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 25*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 22*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 18*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 16*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 13*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 9*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 8*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 6*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 1*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W10
|
||||
.byte EOT
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_2:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte VOICE , 19
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+36
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , Dn3 , v100
|
||||
.byte W96
|
||||
.byte TIE
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte N84
|
||||
.byte W96
|
||||
.byte N96
|
||||
.byte W96
|
||||
.byte TIE
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte N96
|
||||
.byte W96
|
||||
.byte N96
|
||||
.byte W96
|
||||
.byte TIE
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte TIE
|
||||
.byte W96
|
||||
.byte VOL , 77*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 75*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 72*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 70*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 68*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 65*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 63*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 60*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 59*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 56*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 55*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 53*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 48*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 47*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 43*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 36*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 31*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 30*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 27*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 25*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 22*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 18*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 16*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 13*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 9*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 8*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 6*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 1*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W10
|
||||
.byte EOT
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_3:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte VOICE , 20
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 38
|
||||
.byte PAN , c_v+6
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte N12 , Dn3 , v096
|
||||
.byte W12
|
||||
.byte N84 , En3
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 1
|
||||
.byte W72
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N12 , Fn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte TIE , En3
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 1
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N12 , Fn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte Gn3
|
||||
.byte W12
|
||||
.byte N24 , An3
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 1
|
||||
.byte W12
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N12 , As3
|
||||
.byte W12
|
||||
.byte An3
|
||||
.byte W12
|
||||
.byte Gn3
|
||||
.byte W12
|
||||
.byte An3
|
||||
.byte W12
|
||||
.byte Gn3
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte TIE , En3
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 1
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte MOD , 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N12 , Fn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte TIE , Dn3
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte MOD , 1
|
||||
.byte W12
|
||||
.byte VOL , 77*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 75*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 72*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 70*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 68*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 65*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 63*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 60*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 59*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 56*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 55*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 53*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 48*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 47*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 43*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 36*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 31*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 30*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 27*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 25*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 22*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 18*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 16*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 13*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 9*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 8*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 6*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 1*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W10
|
||||
.byte EOT
|
||||
.byte MOD , 0
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_4:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte VOICE , 19
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+16
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , Gn2 , v120
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
bgm_fanfa_rayquaza_4_000:
|
||||
.byte MOD , 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , An2 , v120
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W84
|
||||
.byte PEND
|
||||
.byte 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , As2
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N84 , Gn2
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W36
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte W12
|
||||
bgm_fanfa_rayquaza_4_001:
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , Gn2 , v120
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_4_000
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_4_001
|
||||
.byte MOD , 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , An2 , v120
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , Gn2
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W84
|
||||
.byte 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , An2
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N96 , Gn2
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte VOL , 90*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte TIE , Dn2
|
||||
.byte W12
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte VOL , 77*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 75*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 72*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 70*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 68*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 65*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 63*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 60*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 59*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 56*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 55*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 53*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 48*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 47*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 43*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 38*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 36*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 31*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 30*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 27*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 25*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 22*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 18*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 16*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 13*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 9*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 8*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W04
|
||||
.byte 6*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W02
|
||||
.byte 1*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W10
|
||||
.byte EOT
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_5:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte VOICE , 80
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 55*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte BEND , c_v+1
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
bgm_fanfa_rayquaza_5_000:
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_5_000
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_5_000
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_5_000
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_5_000
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N09 , Dn1 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N21 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_6:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte VOICE , 81
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 79*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
bgm_fanfa_rayquaza_6_000:
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_6_000
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W24
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_6_000
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_6_000
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_6_000
|
||||
.byte N09 , Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte Dn1 , v064
|
||||
.byte W12
|
||||
.byte Dn1 , v052
|
||||
.byte W12
|
||||
.byte N21 , Dn1 , v064
|
||||
.byte W24
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_fanfa_rayquaza_7:
|
||||
.byte KEYSH , bgm_fanfa_rayquaza_key+0
|
||||
.byte VOICE , 82
|
||||
.byte VOL , 56*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte BEND , c_v+0
|
||||
.byte TIE , Dn3 , v100
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W84
|
||||
.byte EOT
|
||||
.byte W12
|
||||
.byte N12 , Dn4
|
||||
.byte W12
|
||||
.byte N84 , En4
|
||||
.byte W84
|
||||
bgm_fanfa_rayquaza_7_000:
|
||||
.byte N12 , Fn4 , v100
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Dn4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Fn4
|
||||
.byte W12
|
||||
.byte Dn4
|
||||
.byte W12
|
||||
.byte TIE , En4
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte W96
|
||||
.byte EOT
|
||||
.byte N12 , Fn4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Dn4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Fn4
|
||||
.byte W12
|
||||
.byte Gn4
|
||||
.byte W12
|
||||
.byte N24 , An4
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte As4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Gn4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Gn4
|
||||
.byte W12
|
||||
.byte Fn4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_fanfa_rayquaza_7_000
|
||||
.byte W96
|
||||
.byte EOT , En4
|
||||
.byte N12 , Fn4 , v100
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Dn4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Fn4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte N48 , Dn4
|
||||
.byte W12
|
||||
.byte VOL , 45*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W12
|
||||
.byte 34*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W12
|
||||
.byte 22*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W12
|
||||
.byte 11*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W24
|
||||
.byte 1*bgm_fanfa_rayquaza_mvl/mxv
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_fanfa_rayquaza:
|
||||
.byte 7 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_fanfa_rayquaza_pri @ Priority
|
||||
.byte bgm_fanfa_rayquaza_rev @ Reverb.
|
||||
|
||||
.word bgm_fanfa_rayquaza_grp
|
||||
|
||||
.word bgm_fanfa_rayquaza_1
|
||||
.word bgm_fanfa_rayquaza_2
|
||||
.word bgm_fanfa_rayquaza_3
|
||||
.word bgm_fanfa_rayquaza_4
|
||||
.word bgm_fanfa_rayquaza_5
|
||||
.word bgm_fanfa_rayquaza_6
|
||||
.word bgm_fanfa_rayquaza_7
|
||||
|
||||
.end
|
||||
778
sound/songs/bgm_field13.s
Normal file
778
sound/songs/bgm_field13.s
Normal file
@ -0,0 +1,778 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_field13_grp, voicegroup_pokemon_cry
|
||||
.equ bgm_field13_pri, 0
|
||||
.equ bgm_field13_rev, reverb_set+50
|
||||
.equ bgm_field13_mvl, 127
|
||||
.equ bgm_field13_key, 0
|
||||
.equ bgm_field13_tbs, 1
|
||||
.equ bgm_field13_exg, 0
|
||||
.equ bgm_field13_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_field13
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_field13_1:
|
||||
.byte KEYSH , bgm_field13_key+0
|
||||
.byte TEMPO , 130*bgm_field13_tbs/2
|
||||
.byte VOICE , 56
|
||||
.byte VOL , 80*bgm_field13_mvl/mxv
|
||||
.byte W96
|
||||
.byte W96
|
||||
bgm_field13_1_B1:
|
||||
.byte W12
|
||||
.byte VOICE , 48
|
||||
.byte N11 , Fs2 , v080
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte N44 , Ds3
|
||||
.byte W48
|
||||
.byte W12
|
||||
.byte N23 , En3
|
||||
.byte W24
|
||||
.byte Ds3
|
||||
.byte W24
|
||||
.byte Cs3
|
||||
.byte W24
|
||||
.byte N11 , Bn2
|
||||
.byte W12
|
||||
.byte N17 , Ds3
|
||||
.byte W18
|
||||
.byte N05 , Bn2
|
||||
.byte W06
|
||||
.byte N44 , Fs2
|
||||
.byte W48
|
||||
.byte Bn2
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte Bn3
|
||||
.byte W72
|
||||
.byte W12
|
||||
.byte N11 , Fs2
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte En3
|
||||
.byte W12
|
||||
.byte N44 , Ds3
|
||||
.byte W48
|
||||
.byte W12
|
||||
.byte N23 , An2
|
||||
.byte W24
|
||||
.byte Cs3
|
||||
.byte W24
|
||||
.byte En3
|
||||
.byte W24
|
||||
.byte N11 , An3
|
||||
.byte W12
|
||||
.byte N17 , Fs3
|
||||
.byte W18
|
||||
.byte N05 , An3
|
||||
.byte W06
|
||||
.byte N32 , Bn3
|
||||
.byte W36
|
||||
.byte N11 , Bn2
|
||||
.byte W12
|
||||
.byte Ds3
|
||||
.byte W12
|
||||
.byte Fs3
|
||||
.byte W12
|
||||
.byte Bn3
|
||||
.byte W12
|
||||
.byte N23 , An3
|
||||
.byte W24
|
||||
.byte Fs3
|
||||
.byte W24
|
||||
.byte N11 , En3
|
||||
.byte W12
|
||||
.byte N23 , Ds3
|
||||
.byte W24
|
||||
.byte VOICE , 56
|
||||
.byte N05 , An2 , v104
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Cs3
|
||||
.byte W24
|
||||
.byte N05 , An2
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Cs3
|
||||
.byte W24
|
||||
bgm_field13_1_000:
|
||||
.byte N05 , Bn2 , v104
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Fs3
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_field13_1_000
|
||||
.byte N05 , An2 , v104
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , En3
|
||||
.byte W24
|
||||
.byte N05 , An2
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Gs3
|
||||
.byte W24
|
||||
.byte N05 , Bn2
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Ds4
|
||||
.byte W24
|
||||
.byte N05 , Bn2
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Fn3
|
||||
.byte W24
|
||||
bgm_field13_1_001:
|
||||
.byte N05 , Bn2 , v104
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W36
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_field13_1_001
|
||||
.byte GOTO
|
||||
.word bgm_field13_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_field13_2:
|
||||
.byte KEYSH , bgm_field13_key+0
|
||||
.byte VOICE , 56
|
||||
.byte VOL , 80*bgm_field13_mvl/mxv
|
||||
.byte N05 , Bn2 , v112
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W36
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23 , Fs3
|
||||
.byte W24
|
||||
bgm_field13_2_B1:
|
||||
bgm_field13_2_000:
|
||||
.byte N44 , Bn3 , v112
|
||||
.byte W60
|
||||
.byte N11 , Fs3
|
||||
.byte W12
|
||||
.byte N11
|
||||
.byte W12
|
||||
.byte Bn3
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte N23 , Cs4
|
||||
.byte W24
|
||||
.byte Bn3
|
||||
.byte W24
|
||||
.byte An3
|
||||
.byte W24
|
||||
.byte En3
|
||||
.byte W24
|
||||
.byte N92 , Fs3
|
||||
.byte W96
|
||||
.byte VOICE , 48
|
||||
.byte N68 , Ds3 , v092
|
||||
.byte W72
|
||||
.byte VOICE , 56
|
||||
.byte N23 , Fs3 , v112
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_field13_2_000
|
||||
.byte N23 , Cs4 , v112
|
||||
.byte W24
|
||||
.byte Bn3
|
||||
.byte W24
|
||||
.byte Cs4
|
||||
.byte W24
|
||||
.byte En4
|
||||
.byte W24
|
||||
.byte TIE , Ds4
|
||||
.byte W96
|
||||
.byte W92
|
||||
.byte W03
|
||||
.byte EOT
|
||||
.byte W01
|
||||
.byte W24
|
||||
.byte VOICE , 48
|
||||
.byte N17 , An3 , v096
|
||||
.byte W18
|
||||
.byte N05 , En4
|
||||
.byte W06
|
||||
.byte N23 , An4
|
||||
.byte W24
|
||||
.byte Gs4
|
||||
.byte W24
|
||||
bgm_field13_2_001:
|
||||
.byte N32 , Cs4 , v096
|
||||
.byte W36
|
||||
.byte Ds4
|
||||
.byte W36
|
||||
.byte N23 , En4
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte N17 , Fs4
|
||||
.byte W18
|
||||
.byte N05 , En4
|
||||
.byte W06
|
||||
.byte N68 , Ds4
|
||||
.byte W72
|
||||
.byte N17 , Bn3
|
||||
.byte W18
|
||||
.byte N05 , Fs3
|
||||
.byte W06
|
||||
.byte N68 , Ds4
|
||||
.byte W72
|
||||
.byte W24
|
||||
.byte N17 , An3
|
||||
.byte W18
|
||||
.byte N05 , En4
|
||||
.byte W06
|
||||
.byte N23 , An4
|
||||
.byte W24
|
||||
.byte Gs4
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_field13_2_001
|
||||
.byte N17 , Fs4 , v096
|
||||
.byte W18
|
||||
.byte N05 , Ds4
|
||||
.byte W06
|
||||
.byte N68 , Bn4
|
||||
.byte W72
|
||||
.byte N17
|
||||
.byte W18
|
||||
.byte N05 , Fs4
|
||||
.byte W06
|
||||
.byte N68 , Ds5
|
||||
.byte W72
|
||||
.byte VOICE , 56
|
||||
.byte N05 , Fs3 , v112
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W36
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N23
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_field13_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_field13_3:
|
||||
.byte KEYSH , bgm_field13_key+0
|
||||
.byte VOICE , 38
|
||||
.byte VOL , 80*bgm_field13_mvl/mxv
|
||||
.byte N11 , Fs1 , v112
|
||||
.byte W48
|
||||
.byte N11
|
||||
.byte W48
|
||||
bgm_field13_3_000:
|
||||
.byte N11 , Fs1 , v112
|
||||
.byte W48
|
||||
.byte N11
|
||||
.byte W48
|
||||
.byte PEND
|
||||
bgm_field13_3_B1:
|
||||
bgm_field13_3_001:
|
||||
.byte N11 , Fs1 , v112
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte Gs1
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte En1
|
||||
.byte W12
|
||||
.byte Ds1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte Ds1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte Ds1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte Ds1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_field13_3_001
|
||||
.byte PATT
|
||||
.word bgm_field13_3_001
|
||||
.byte N11 , An1 , v112
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte Gs1
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_field13_3_001
|
||||
bgm_field13_3_002:
|
||||
.byte N11 , Bn1 , v112
|
||||
.byte W12
|
||||
.byte Ds2
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Ds2
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Ds2
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Ds2
|
||||
.byte W12
|
||||
.byte PEND
|
||||
bgm_field13_3_003:
|
||||
.byte N11 , An1 , v112
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte PEND
|
||||
bgm_field13_3_004:
|
||||
.byte N11 , An1 , v112
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte An1
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte En2
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_field13_3_002
|
||||
.byte N11 , Bn1 , v112
|
||||
.byte W12
|
||||
.byte Fs2
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs2
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs2
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W12
|
||||
.byte Fs2
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_field13_3_003
|
||||
.byte PATT
|
||||
.word bgm_field13_3_004
|
||||
.byte PATT
|
||||
.word bgm_field13_3_002
|
||||
.byte PATT
|
||||
.word bgm_field13_3_001
|
||||
.byte PATT
|
||||
.word bgm_field13_3_000
|
||||
.byte PATT
|
||||
.word bgm_field13_3_000
|
||||
.byte GOTO
|
||||
.word bgm_field13_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_field13_4:
|
||||
.byte KEYSH , bgm_field13_key+0
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 80*bgm_field13_mvl/mxv
|
||||
.byte N05 , En1 , v072
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
bgm_field13_4_000:
|
||||
.byte N05 , En1 , v072
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte N02
|
||||
.byte W03
|
||||
.byte PEND
|
||||
bgm_field13_4_B1:
|
||||
bgm_field13_4_001:
|
||||
.byte N05 , En1 , v072
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W12
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte N05
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_000
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_000
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_001
|
||||
.byte PATT
|
||||
.word bgm_field13_4_000
|
||||
.byte GOTO
|
||||
.word bgm_field13_4_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_field13:
|
||||
.byte 4 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_field13_pri @ Priority
|
||||
.byte bgm_field13_rev @ Reverb.
|
||||
|
||||
.word bgm_field13_grp
|
||||
|
||||
.word bgm_field13_1
|
||||
.word bgm_field13_2
|
||||
.word bgm_field13_3
|
||||
.word bgm_field13_4
|
||||
|
||||
.end
|
||||
5380
sound/songs/bgm_finecity.s
Normal file
5380
sound/songs/bgm_finecity.s
Normal file
File diff suppressed because it is too large
Load Diff
3305
sound/songs/bgm_friendly.s
Normal file
3305
sound/songs/bgm_friendly.s
Normal file
File diff suppressed because it is too large
Load Diff
7614
sound/songs/bgm_frlg_battle_champion.s
Normal file
7614
sound/songs/bgm_frlg_battle_champion.s
Normal file
File diff suppressed because it is too large
Load Diff
5968
sound/songs/bgm_frlg_battle_deoxys.s
Normal file
5968
sound/songs/bgm_frlg_battle_deoxys.s
Normal file
File diff suppressed because it is too large
Load Diff
5087
sound/songs/bgm_frlg_battle_leader.s
Normal file
5087
sound/songs/bgm_frlg_battle_leader.s
Normal file
File diff suppressed because it is too large
Load Diff
3605
sound/songs/bgm_frlg_battle_legendary.s
Normal file
3605
sound/songs/bgm_frlg_battle_legendary.s
Normal file
File diff suppressed because it is too large
Load Diff
3439
sound/songs/bgm_frlg_battle_mewtwo.s
Normal file
3439
sound/songs/bgm_frlg_battle_mewtwo.s
Normal file
File diff suppressed because it is too large
Load Diff
8354
sound/songs/bgm_frlg_battle_trainer.s
Normal file
8354
sound/songs/bgm_frlg_battle_trainer.s
Normal file
File diff suppressed because it is too large
Load Diff
3440
sound/songs/bgm_frlg_battle_wild_pokemon.s
Normal file
3440
sound/songs/bgm_frlg_battle_wild_pokemon.s
Normal file
File diff suppressed because it is too large
Load Diff
2317
sound/songs/bgm_frlg_bicycle.s
Normal file
2317
sound/songs/bgm_frlg_bicycle.s
Normal file
File diff suppressed because it is too large
Load Diff
839
sound/songs/bgm_frlg_boy_eye.s
Normal file
839
sound/songs/bgm_frlg_boy_eye.s
Normal file
@ -0,0 +1,839 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_boy_eye_grp, voicegroup_86A51F4
|
||||
.equ bgm_frlg_boy_eye_pri, 0
|
||||
.equ bgm_frlg_boy_eye_rev, reverb_set+50
|
||||
.equ bgm_frlg_boy_eye_mvl, 127
|
||||
.equ bgm_frlg_boy_eye_key, 0
|
||||
.equ bgm_frlg_boy_eye_tbs, 1
|
||||
.equ bgm_frlg_boy_eye_exg, 0
|
||||
.equ bgm_frlg_boy_eye_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_boy_eye
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_1:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte TEMPO , 154*bgm_frlg_boy_eye_tbs/2
|
||||
.byte VOICE , 18
|
||||
.byte VOL , 53*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte PAN , c_v+48
|
||||
.byte N06 , Cs4 , v127
|
||||
.byte W06
|
||||
.byte Dn4
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte N72 , Fn4
|
||||
.byte W06
|
||||
.byte VOL , 19*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W18
|
||||
.byte 32*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 38*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 46*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte MOD , 5
|
||||
.byte W06
|
||||
.byte VOL , 53*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 60*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 66*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 73*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte VOICE , 17
|
||||
.byte MOD , 0
|
||||
.byte VOL , 63*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte PAN , c_v+28
|
||||
.byte W60
|
||||
.byte N06 , En3 , v120
|
||||
.byte W12
|
||||
.byte Ds3
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
bgm_frlg_boy_eye_1_B1:
|
||||
.byte N21 , Bn4 , v127
|
||||
.byte W21
|
||||
.byte N03 , As4 , v120
|
||||
.byte W03
|
||||
.byte N24 , An4 , v127
|
||||
.byte W24
|
||||
.byte N12 , Gs4
|
||||
.byte W12
|
||||
.byte Fs4
|
||||
.byte W12
|
||||
.byte En4
|
||||
.byte W12
|
||||
.byte Ds4
|
||||
.byte W12
|
||||
.byte Fs4
|
||||
.byte W12
|
||||
.byte N03 , Fn4 , v088
|
||||
.byte W03
|
||||
.byte En4 , v092
|
||||
.byte W03
|
||||
.byte Ds4
|
||||
.byte W03
|
||||
.byte Dn4
|
||||
.byte W03
|
||||
.byte N36 , Cs4 , v127
|
||||
.byte W36
|
||||
.byte N12 , Bn3
|
||||
.byte W12
|
||||
.byte Cs4 , v120
|
||||
.byte W12
|
||||
.byte En4 , v127
|
||||
.byte W12
|
||||
.byte N48 , Gn4
|
||||
.byte W48
|
||||
.byte Dn5
|
||||
.byte W48
|
||||
.byte Fs4
|
||||
.byte W48
|
||||
.byte Cs5
|
||||
.byte W48
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_2:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 18
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 79*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte N06 , En5 , v127
|
||||
.byte W06
|
||||
.byte Ds5
|
||||
.byte W06
|
||||
.byte Dn5
|
||||
.byte W06
|
||||
.byte Cs5
|
||||
.byte W06
|
||||
.byte N72 , Bn4
|
||||
.byte W06
|
||||
.byte VOL , 34*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 56*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 60*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 65*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 73*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte MOD , 5
|
||||
.byte W06
|
||||
.byte VOL , 82*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 86*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 89*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W18
|
||||
.byte VOICE , 17
|
||||
.byte MOD , 0
|
||||
.byte VOL , 90*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte N06 , En4
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte En3 , v120
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte Fs3
|
||||
.byte W12
|
||||
bgm_frlg_boy_eye_2_B1:
|
||||
.byte MOD , 1
|
||||
.byte N36 , En5 , v127
|
||||
.byte W36
|
||||
.byte Ds5
|
||||
.byte W36
|
||||
.byte N24 , Cs5
|
||||
.byte W24
|
||||
.byte N12 , Bn4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte N03 , Gs4 , v108
|
||||
.byte W03
|
||||
.byte An4 , v076
|
||||
.byte W03
|
||||
.byte N06 , Gs4 , v120
|
||||
.byte W06
|
||||
.byte N12 , Fs4 , v127
|
||||
.byte W12
|
||||
.byte Gs4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Bn4
|
||||
.byte W12
|
||||
.byte Cs5
|
||||
.byte W12
|
||||
.byte N96 , Fn5
|
||||
.byte W48
|
||||
.byte MOD , 7
|
||||
.byte W48
|
||||
.byte 0
|
||||
.byte N96 , En5
|
||||
.byte W48
|
||||
.byte MOD , 7
|
||||
.byte W48
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_2_B1
|
||||
.byte MOD , 0
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_3:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 81
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+63
|
||||
.byte VOL , 45*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W36
|
||||
.byte N12 , Bn2 , v127
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , En2
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte W12
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , En2
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte W12
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte N12 , En2
|
||||
.byte W12
|
||||
.byte Fn2
|
||||
.byte W12
|
||||
.byte Fs2
|
||||
.byte W12
|
||||
bgm_frlg_boy_eye_3_B1:
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , En2 , v127
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , En2
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , En2
|
||||
.byte W12
|
||||
.byte N06 , Bn2
|
||||
.byte W06
|
||||
.byte N03 , Gs2 , v120
|
||||
.byte W03
|
||||
.byte Fs2
|
||||
.byte W03
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , En2 , v127
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , Fs2
|
||||
.byte W12
|
||||
.byte Cs3
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , Fs2
|
||||
.byte W12
|
||||
.byte Cs3
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , Fs2
|
||||
.byte W12
|
||||
.byte N06 , Cs3
|
||||
.byte W06
|
||||
.byte N03 , Bn2 , v120
|
||||
.byte W03
|
||||
.byte Gs2
|
||||
.byte W03
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , Fs2 , v127
|
||||
.byte W12
|
||||
.byte Cs3
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , Gn2
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , Gn2
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , Gn2
|
||||
.byte W12
|
||||
.byte N06 , Dn3
|
||||
.byte W06
|
||||
.byte N03 , Bn2 , v120
|
||||
.byte W03
|
||||
.byte An2
|
||||
.byte W03
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , Gn2 , v127
|
||||
.byte W12
|
||||
.byte Dn3
|
||||
.byte W12
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , Fs2
|
||||
.byte W12
|
||||
.byte Cs3
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , Fs2
|
||||
.byte W12
|
||||
.byte N06 , Cs3
|
||||
.byte W06
|
||||
.byte An2 , v120
|
||||
.byte W06
|
||||
.byte PAN , c_v-62
|
||||
.byte N12 , Fs2 , v127
|
||||
.byte W12
|
||||
.byte Cs3 , v120
|
||||
.byte W12
|
||||
.byte PAN , c_v+63
|
||||
.byte N12 , Fs2 , v127
|
||||
.byte W12
|
||||
.byte Ds2
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_4:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 38
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 90*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte N06 , Bn1 , v120
|
||||
.byte W06
|
||||
.byte N03 , Fn2
|
||||
.byte W06
|
||||
.byte N06 , Bn1
|
||||
.byte W06
|
||||
.byte En1
|
||||
.byte W06
|
||||
.byte N48 , Bn1
|
||||
.byte W06
|
||||
.byte VOL , 45*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 8
|
||||
.byte W15
|
||||
.byte VOL , 79*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 90*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 90*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Fn1
|
||||
.byte W06
|
||||
.byte N12 , Ds1
|
||||
.byte W12
|
||||
.byte BEND , c_v+0
|
||||
.byte N06 , En1
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte Cs1
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N06 , En1
|
||||
.byte W12
|
||||
.byte Ds1
|
||||
.byte W12
|
||||
.byte Fs1
|
||||
.byte W12
|
||||
bgm_frlg_boy_eye_4_B1:
|
||||
.byte BEND , c_v+0
|
||||
.byte N15 , En1 , v120
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W30
|
||||
.byte N06 , As1
|
||||
.byte W06
|
||||
.byte Bn1
|
||||
.byte W06
|
||||
.byte N15 , Fs1
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte Cs2
|
||||
.byte W06
|
||||
.byte N09 , Fs1
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12 , Gn1
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N06 , Cs2
|
||||
.byte W06
|
||||
.byte N03 , Dn2
|
||||
.byte W06
|
||||
.byte N06 , As1
|
||||
.byte W06
|
||||
.byte N03 , Bn1
|
||||
.byte W06
|
||||
.byte N06 , Fs1
|
||||
.byte W06
|
||||
.byte N03 , Gn1
|
||||
.byte W06
|
||||
.byte N06 , En1
|
||||
.byte W06
|
||||
.byte N03 , Dn1
|
||||
.byte W06
|
||||
.byte Cs2
|
||||
.byte W06
|
||||
.byte N12 , Fs1
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W18
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte BEND , c_v+0
|
||||
.byte N24 , En2
|
||||
.byte W03
|
||||
.byte BEND , c_v-12
|
||||
.byte W03
|
||||
.byte c_v-19
|
||||
.byte W03
|
||||
.byte c_v-26
|
||||
.byte W03
|
||||
.byte c_v-32
|
||||
.byte W03
|
||||
.byte c_v-40
|
||||
.byte W03
|
||||
.byte c_v-47
|
||||
.byte W03
|
||||
.byte c_v-54
|
||||
.byte W03
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_4_B1
|
||||
.byte BEND , c_v-63
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_5:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 1
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 45*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte PAN , c_v-29
|
||||
.byte N06 , En6 , v127
|
||||
.byte W06
|
||||
.byte Ds6
|
||||
.byte W06
|
||||
.byte Dn6
|
||||
.byte W06
|
||||
.byte Cs6
|
||||
.byte W06
|
||||
.byte N48 , Bn5
|
||||
.byte W72
|
||||
.byte W96
|
||||
bgm_frlg_boy_eye_5_B1:
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_5_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_6:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 80
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 56*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte BEND , c_v+2
|
||||
.byte W60
|
||||
.byte MOD , 5
|
||||
.byte W36
|
||||
.byte 0
|
||||
.byte W12
|
||||
.byte N06 , En4 , v127
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte En3 , v120
|
||||
.byte W12
|
||||
.byte Fn3
|
||||
.byte W12
|
||||
.byte Fs3
|
||||
.byte W12
|
||||
bgm_frlg_boy_eye_6_B1:
|
||||
.byte MOD , 1
|
||||
.byte N36 , En5 , v127
|
||||
.byte W36
|
||||
.byte Ds5
|
||||
.byte W36
|
||||
.byte N24 , Cs5
|
||||
.byte W24
|
||||
.byte N12 , Bn4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte N03 , Gs4 , v120
|
||||
.byte W03
|
||||
.byte An4 , v032
|
||||
.byte W03
|
||||
.byte N06 , Gs4
|
||||
.byte W06
|
||||
.byte N12 , Fs4 , v127
|
||||
.byte W12
|
||||
.byte Gs4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Bn4
|
||||
.byte W12
|
||||
.byte Cs5
|
||||
.byte W12
|
||||
.byte N96 , Fn5
|
||||
.byte W48
|
||||
.byte MOD , 7
|
||||
.byte W48
|
||||
.byte 0
|
||||
.byte N96 , En5
|
||||
.byte W48
|
||||
.byte MOD , 7
|
||||
.byte W48
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_6_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_7:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 0
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 79*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W72
|
||||
.byte N24 , Cn3 , v120
|
||||
.byte W24
|
||||
.byte N06 , Cn1 , v092
|
||||
.byte W18
|
||||
.byte Cn1 , v056
|
||||
.byte W18
|
||||
.byte Cs1 , v084
|
||||
.byte W06
|
||||
.byte Cs1 , v064
|
||||
.byte W06
|
||||
.byte Cn1 , v092
|
||||
.byte W12
|
||||
.byte N03 , Cn1 , v056
|
||||
.byte W12
|
||||
.byte N06 , Cn1 , v088
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
bgm_frlg_boy_eye_7_B1:
|
||||
.byte N06 , Cn1 , v092
|
||||
.byte W12
|
||||
.byte Dn3 , v112
|
||||
.byte W06
|
||||
.byte Cn1 , v056
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cs1 , v076
|
||||
.byte W06
|
||||
.byte Dn3 , v052
|
||||
.byte W06
|
||||
.byte Cn1 , v092
|
||||
.byte W06
|
||||
.byte N03 , Cn1 , v056
|
||||
.byte W06
|
||||
.byte N06 , Dn3 , v112
|
||||
.byte W06
|
||||
.byte Dn3 , v056
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cn1 , v088
|
||||
.byte W06
|
||||
.byte Dn3 , v052
|
||||
.byte W06
|
||||
.byte Cn1 , v100
|
||||
.byte W06
|
||||
.byte En3 , v076
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W06
|
||||
.byte Cn1 , v056
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cn1 , v088
|
||||
.byte W06
|
||||
.byte Dn3 , v052
|
||||
.byte W06
|
||||
.byte Cn1 , v092
|
||||
.byte W06
|
||||
.byte Cn1 , v048
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W06
|
||||
.byte Cn1 , v056
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cs1 , v076
|
||||
.byte W06
|
||||
.byte Cs1 , v068
|
||||
.byte W06
|
||||
.byte Cn1 , v092
|
||||
.byte W12
|
||||
.byte Dn3 , v112
|
||||
.byte W06
|
||||
.byte Cs1 , v076
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cs1 , v076
|
||||
.byte W06
|
||||
.byte Cn1 , v052
|
||||
.byte W06
|
||||
.byte Cn1 , v092
|
||||
.byte W12
|
||||
.byte Cn1 , v112
|
||||
.byte W06
|
||||
.byte Dn3 , v056
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cs1 , v076
|
||||
.byte W06
|
||||
.byte Dn3 , v052
|
||||
.byte W06
|
||||
.byte Cn1 , v100
|
||||
.byte W06
|
||||
.byte Cn1 , v076
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W06
|
||||
.byte Cn1 , v056
|
||||
.byte W06
|
||||
.byte Dn3 , v112
|
||||
.byte W12
|
||||
.byte Cn1 , v088
|
||||
.byte W06
|
||||
.byte Cn1 , v052
|
||||
.byte W06
|
||||
.byte Cs1 , v076
|
||||
.byte W12
|
||||
.byte Cn1 , v112
|
||||
.byte W06
|
||||
.byte Cn1 , v056
|
||||
.byte W06
|
||||
.byte Cs1 , v080
|
||||
.byte W12
|
||||
.byte Cs1 , v076
|
||||
.byte W06
|
||||
.byte Dn3 , v052
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_7_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 8 **********************@
|
||||
|
||||
bgm_frlg_boy_eye_8:
|
||||
.byte KEYSH , bgm_frlg_boy_eye_key+0
|
||||
.byte VOICE , 127
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 38*bgm_frlg_boy_eye_mvl/mxv
|
||||
.byte W96
|
||||
.byte N06 , Cn5 , v096
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v044
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v096
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v044
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v096
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v044
|
||||
.byte W12
|
||||
.byte Cn5 , v096
|
||||
.byte W03
|
||||
.byte Cn5 , v044
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Cn5 , v064
|
||||
.byte W06
|
||||
.byte Cn5 , v044
|
||||
.byte W06
|
||||
bgm_frlg_boy_eye_8_B1:
|
||||
.byte N06 , Cn5 , v108
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v052
|
||||
.byte W12
|
||||
.byte Cn5 , v088
|
||||
.byte W12
|
||||
.byte Cn5 , v056
|
||||
.byte W12
|
||||
.byte Cn5 , v064
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v112
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v040
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v096
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v048
|
||||
.byte W12
|
||||
.byte Cn5 , v092
|
||||
.byte W12
|
||||
.byte Cn5 , v060
|
||||
.byte W12
|
||||
.byte Cn5 , v064
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v108
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v092
|
||||
.byte W12
|
||||
.byte Cn5 , v052
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v108
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v048
|
||||
.byte W12
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte Cn5 , v064
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v100
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v096
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v048
|
||||
.byte W12
|
||||
.byte Cn5 , v088
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte Cn5 , v064
|
||||
.byte W12
|
||||
.byte N06 , Cn5 , v108
|
||||
.byte W12
|
||||
.byte N03 , Cn5 , v088
|
||||
.byte W06
|
||||
.byte Cn5 , v044
|
||||
.byte W03
|
||||
.byte VOICE , 126
|
||||
.byte W03
|
||||
.byte N12 , Gn5 , v104
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_frlg_boy_eye_8_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_boy_eye:
|
||||
.byte 8 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_boy_eye_pri @ Priority
|
||||
.byte bgm_frlg_boy_eye_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_boy_eye_grp
|
||||
|
||||
.word bgm_frlg_boy_eye_1
|
||||
.word bgm_frlg_boy_eye_2
|
||||
.word bgm_frlg_boy_eye_3
|
||||
.word bgm_frlg_boy_eye_4
|
||||
.word bgm_frlg_boy_eye_5
|
||||
.word bgm_frlg_boy_eye_6
|
||||
.word bgm_frlg_boy_eye_7
|
||||
.word bgm_frlg_boy_eye_8
|
||||
|
||||
.end
|
||||
882
sound/songs/bgm_frlg_caught_pokemon.s
Normal file
882
sound/songs/bgm_frlg_caught_pokemon.s
Normal file
@ -0,0 +1,882 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_caught_pokemon_grp, voicegroup_86AE338
|
||||
.equ bgm_frlg_caught_pokemon_pri, 0
|
||||
.equ bgm_frlg_caught_pokemon_rev, reverb_set+50
|
||||
.equ bgm_frlg_caught_pokemon_mvl, 127
|
||||
.equ bgm_frlg_caught_pokemon_key, 0
|
||||
.equ bgm_frlg_caught_pokemon_tbs, 1
|
||||
.equ bgm_frlg_caught_pokemon_exg, 0
|
||||
.equ bgm_frlg_caught_pokemon_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_caught_pokemon
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_1:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte TEMPO , 140*bgm_frlg_caught_pokemon_tbs/2
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_1_B1:
|
||||
.byte VOICE , 73
|
||||
.byte PAN , c_v+0
|
||||
.byte MOD , 0
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N06 , Bn4 , v112
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Gs4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Bn4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte Cs5
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Bn4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Gs4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte Bn4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte Cs5
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Bn4
|
||||
.byte W24
|
||||
.byte Cn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte As4
|
||||
.byte W06
|
||||
bgm_frlg_caught_pokemon_1_000:
|
||||
.byte N06 , Cn5 , v112
|
||||
.byte W12
|
||||
.byte As4
|
||||
.byte W12
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte As4
|
||||
.byte W12
|
||||
.byte Cn5
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte Dn5
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Cn5
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_1_000
|
||||
.byte N06 , Dn5 , v112
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Cn5
|
||||
.byte W24
|
||||
.byte Bn3
|
||||
.byte W06
|
||||
.byte Ds4
|
||||
.byte W06
|
||||
.byte Fs4
|
||||
.byte W06
|
||||
.byte An4
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_2:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_2_B1:
|
||||
.byte VOICE , 56
|
||||
.byte PAN , c_v+0
|
||||
.byte MOD , 0
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W12
|
||||
.byte N06 , En3 , v092
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W36
|
||||
.byte VOICE , 47
|
||||
.byte PAN , c_v+10
|
||||
.byte N12 , An1 , v112
|
||||
.byte W12
|
||||
.byte Bn1
|
||||
.byte W48
|
||||
.byte VOICE , 56
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte N06 , En3 , v092
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte VOICE , 47
|
||||
.byte PAN , c_v+10
|
||||
.byte N12 , An1 , v112
|
||||
.byte W24
|
||||
.byte Bn1
|
||||
.byte W48
|
||||
bgm_frlg_caught_pokemon_2_000:
|
||||
.byte VOICE , 56
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte N06 , Fn3 , v092
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte N06
|
||||
.byte W36
|
||||
.byte VOICE , 47
|
||||
.byte PAN , c_v+10
|
||||
.byte N12 , As1 , v112
|
||||
.byte W12
|
||||
.byte Cn2
|
||||
.byte W48
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_2_000
|
||||
.byte N06 , Fn3 , v092
|
||||
.byte W24
|
||||
.byte VOICE , 47
|
||||
.byte PAN , c_v+10
|
||||
.byte N12 , As1 , v112
|
||||
.byte W24
|
||||
.byte Cn2
|
||||
.byte W48
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_3:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_3_B1:
|
||||
.byte VOICE , 58
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , En1 , v127
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Bn0
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , En1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Bn0
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N48 , An1
|
||||
.byte W06
|
||||
.byte VOL , 84*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 73*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 67*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 72*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 80*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 86*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 96*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W09
|
||||
.byte 77*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N48 , Bn1
|
||||
.byte W06
|
||||
.byte VOL , 81*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 84*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 87*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 91*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W09
|
||||
.byte 96*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W09
|
||||
.byte N21 , En1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Bn0
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , En1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Bn0
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N24 , An1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W30
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , En1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Cn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Fn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Cn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Fn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Cn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N48 , As1
|
||||
.byte W06
|
||||
.byte VOL , 84*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 73*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 67*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 72*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 80*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 86*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 96*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W09
|
||||
.byte 77*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N48 , Cn2
|
||||
.byte W06
|
||||
.byte VOL , 81*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 84*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 87*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 91*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W09
|
||||
.byte 96*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W06
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W09
|
||||
.byte N21 , Fn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Cn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Fn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N21 , Cn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N24 , As1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W30
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N24 , Fn1
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N24 , Bn0
|
||||
.byte W12
|
||||
.byte VOL , 92*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 76*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W03
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_4:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_4_B1:
|
||||
.byte VOICE , 82
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte W12
|
||||
.byte N06 , Bn2 , v060
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte Cs3
|
||||
.byte W96
|
||||
.byte W12
|
||||
.byte Bn2
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte Cs3
|
||||
.byte W96
|
||||
bgm_frlg_caught_pokemon_4_000:
|
||||
.byte W12
|
||||
.byte N06 , Cn3 , v060
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte Dn3
|
||||
.byte W96
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_4_000
|
||||
.byte N06 , Dn3 , v060
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_4_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_5:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_5_B1:
|
||||
.byte VOICE , 83
|
||||
.byte PAN , c_v+48
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N03 , Bn5 , v032
|
||||
.byte W12
|
||||
.byte An5
|
||||
.byte W12
|
||||
.byte Gs5
|
||||
.byte W12
|
||||
.byte An5
|
||||
.byte W12
|
||||
.byte Bn5
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte Cs6
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte Bn5
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte An5
|
||||
.byte W12
|
||||
.byte Gs5
|
||||
.byte W12
|
||||
.byte An5
|
||||
.byte W12
|
||||
.byte Bn5
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte Cs6
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte Bn5
|
||||
.byte W48
|
||||
bgm_frlg_caught_pokemon_5_000:
|
||||
.byte N03 , Cn6 , v032
|
||||
.byte W12
|
||||
.byte As5
|
||||
.byte W12
|
||||
.byte An5
|
||||
.byte W12
|
||||
.byte As5
|
||||
.byte W12
|
||||
.byte Cn6
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte Dn6
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte Cn6
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_5_000
|
||||
.byte N03 , Dn6 , v032
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte Cn6
|
||||
.byte W48
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_5_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_6:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_6_B1:
|
||||
.byte VOICE , 81
|
||||
.byte MOD , 0
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte BEND , c_v+0
|
||||
.byte W96
|
||||
.byte N06 , An4 , v048
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Fs4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte W96
|
||||
.byte An4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Gs4
|
||||
.byte W48
|
||||
.byte W96
|
||||
.byte As4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , Gn4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte W96
|
||||
.byte As4
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N24
|
||||
.byte W12
|
||||
.byte MOD , 5
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , An4
|
||||
.byte W48
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_6_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_frlg_caught_pokemon_7:
|
||||
.byte KEYSH , bgm_frlg_caught_pokemon_key+0
|
||||
.byte W12
|
||||
bgm_frlg_caught_pokemon_7_B1:
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 100*bgm_frlg_caught_pokemon_mvl/mxv
|
||||
.byte N06 , En1 , v076
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte En1 , v112
|
||||
.byte N06 , Fs2 , v064
|
||||
.byte W12
|
||||
.byte En1 , v076
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte En1 , v076
|
||||
.byte W12
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte En1 , v112
|
||||
.byte N06 , Fs2 , v064
|
||||
.byte W06
|
||||
.byte En1
|
||||
.byte W06
|
||||
.byte En1 , v076
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
bgm_frlg_caught_pokemon_7_000:
|
||||
.byte N06 , En1 , v112
|
||||
.byte W24
|
||||
.byte Fs2 , v064
|
||||
.byte W24
|
||||
.byte N12 , Bn2 , v092
|
||||
.byte W24
|
||||
.byte N06 , En1 , v112
|
||||
.byte N03 , Fs2 , v064
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N06 , Fs2 , v040
|
||||
.byte W06
|
||||
.byte En1 , v112
|
||||
.byte N06 , Fs2 , v052
|
||||
.byte W06
|
||||
.byte En1 , v088
|
||||
.byte N06 , Fs2 , v060
|
||||
.byte W06
|
||||
.byte PEND
|
||||
bgm_frlg_caught_pokemon_7_001:
|
||||
.byte N06 , En1 , v076
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte En1 , v112
|
||||
.byte N06 , Fs2 , v064
|
||||
.byte W12
|
||||
.byte En1 , v076
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte En1 , v076
|
||||
.byte W12
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte En1 , v112
|
||||
.byte N06 , Fs2 , v064
|
||||
.byte W06
|
||||
.byte En1
|
||||
.byte W06
|
||||
.byte En1 , v076
|
||||
.byte W06
|
||||
.byte En1 , v064
|
||||
.byte W06
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_7_000
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_7_001
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_7_000
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_7_001
|
||||
.byte PATT
|
||||
.word bgm_frlg_caught_pokemon_7_000
|
||||
.byte GOTO
|
||||
.word bgm_frlg_caught_pokemon_7_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_caught_pokemon:
|
||||
.byte 7 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_caught_pokemon_pri @ Priority
|
||||
.byte bgm_frlg_caught_pokemon_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_caught_pokemon_grp
|
||||
|
||||
.word bgm_frlg_caught_pokemon_1
|
||||
.word bgm_frlg_caught_pokemon_2
|
||||
.word bgm_frlg_caught_pokemon_3
|
||||
.word bgm_frlg_caught_pokemon_4
|
||||
.word bgm_frlg_caught_pokemon_5
|
||||
.word bgm_frlg_caught_pokemon_6
|
||||
.word bgm_frlg_caught_pokemon_7
|
||||
|
||||
.end
|
||||
2170
sound/songs/bgm_frlg_celadon_city.s
Normal file
2170
sound/songs/bgm_frlg_celadon_city.s
Normal file
File diff suppressed because it is too large
Load Diff
1827
sound/songs/bgm_frlg_cerulean_city.s
Normal file
1827
sound/songs/bgm_frlg_cerulean_city.s
Normal file
File diff suppressed because it is too large
Load Diff
2710
sound/songs/bgm_frlg_cinnabar_island.s
Normal file
2710
sound/songs/bgm_frlg_cinnabar_island.s
Normal file
File diff suppressed because it is too large
Load Diff
1941
sound/songs/bgm_frlg_congratulations_hall_of_fame.s
Normal file
1941
sound/songs/bgm_frlg_congratulations_hall_of_fame.s
Normal file
File diff suppressed because it is too large
Load Diff
12780
sound/songs/bgm_frlg_credits.s
Normal file
12780
sound/songs/bgm_frlg_credits.s
Normal file
File diff suppressed because it is too large
Load Diff
1552
sound/songs/bgm_frlg_deoxys_eye.s
Normal file
1552
sound/songs/bgm_frlg_deoxys_eye.s
Normal file
File diff suppressed because it is too large
Load Diff
2699
sound/songs/bgm_frlg_dodrio_berry_pick.s
Normal file
2699
sound/songs/bgm_frlg_dodrio_berry_pick.s
Normal file
File diff suppressed because it is too large
Load Diff
602
sound/songs/bgm_frlg_fanfa_pokemon_caught.s
Normal file
602
sound/songs/bgm_frlg_fanfa_pokemon_caught.s
Normal file
@ -0,0 +1,602 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_grp, voicegroup_86B0BD0
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_pri, 5
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_rev, reverb_set+50
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_mvl, 127
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_key, 0
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_tbs, 1
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_exg, 0
|
||||
.equ bgm_frlg_fanfa_pokemon_caught_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_fanfa_pokemon_caught
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_1:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte TEMPO , 64*bgm_frlg_fanfa_pokemon_caught_tbs/2
|
||||
.byte VOICE , 60
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 59*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte PAN , c_v-48
|
||||
.byte BEND , c_v+1
|
||||
.byte W12
|
||||
.byte TEMPO , 136*bgm_frlg_fanfa_pokemon_caught_tbs/2
|
||||
.byte N06 , En3 , v096
|
||||
.byte W06
|
||||
.byte En3 , v040
|
||||
.byte W06
|
||||
.byte Fs3 , v096
|
||||
.byte W06
|
||||
.byte Fs3 , v040
|
||||
.byte W06
|
||||
.byte Gs3 , v096
|
||||
.byte W06
|
||||
.byte Gs3 , v040
|
||||
.byte W06
|
||||
.byte N03 , Gs3 , v096
|
||||
.byte W03
|
||||
.byte Gs3 , v040
|
||||
.byte W03
|
||||
.byte Gs3 , v096
|
||||
.byte W03
|
||||
.byte Gs3 , v040
|
||||
.byte W03
|
||||
.byte N06 , Bn3 , v096
|
||||
.byte W06
|
||||
.byte Bn3 , v040
|
||||
.byte W06
|
||||
.byte Cs4 , v096
|
||||
.byte W06
|
||||
.byte Cs4 , v040
|
||||
.byte W06
|
||||
.byte Ds4 , v096
|
||||
.byte W06
|
||||
.byte Bn3 , v040
|
||||
.byte W06
|
||||
.byte N03 , Ds4 , v096
|
||||
.byte W03
|
||||
.byte Ds4 , v040
|
||||
.byte W03
|
||||
.byte Ds4 , v096
|
||||
.byte W03
|
||||
.byte Ds4 , v040
|
||||
.byte W03
|
||||
.byte VOL , 25*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N48 , En4 , v096
|
||||
.byte W06
|
||||
.byte VOL , 29*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 5
|
||||
.byte VOL , 34*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 38*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 41*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 44*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 50*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 55*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 64*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 71*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W15
|
||||
.byte MOD , 0
|
||||
.byte N06 , En4 , v040
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_2:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 56
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 94*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte PAN , c_v-18
|
||||
.byte BEND , c_v+0
|
||||
.byte W12
|
||||
.byte N06 , Gs4 , v127
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte W03
|
||||
.byte 0
|
||||
.byte N06 , Gs4 , v052
|
||||
.byte W06
|
||||
.byte N03 , Gs4 , v120
|
||||
.byte W03
|
||||
.byte Gs4 , v052
|
||||
.byte W03
|
||||
.byte Gs4 , v120
|
||||
.byte W03
|
||||
.byte Gs4 , v052
|
||||
.byte W03
|
||||
.byte N06 , En4 , v127
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte W03
|
||||
.byte 0
|
||||
.byte N06 , En4 , v052
|
||||
.byte W06
|
||||
.byte N03 , En4 , v120
|
||||
.byte W03
|
||||
.byte En4 , v052
|
||||
.byte W03
|
||||
.byte En4 , v120
|
||||
.byte W03
|
||||
.byte En4 , v052
|
||||
.byte W03
|
||||
.byte N06 , Bn4 , v127
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte W03
|
||||
.byte 0
|
||||
.byte N06 , Bn4 , v052
|
||||
.byte W06
|
||||
.byte N03 , Bn4 , v120
|
||||
.byte W03
|
||||
.byte Bn4 , v052
|
||||
.byte W03
|
||||
.byte Bn4 , v120
|
||||
.byte W03
|
||||
.byte Bn4 , v052
|
||||
.byte W03
|
||||
.byte N06 , An4 , v127
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte W03
|
||||
.byte 0
|
||||
.byte N06 , An4 , v052
|
||||
.byte W06
|
||||
.byte N03 , An4 , v120
|
||||
.byte W03
|
||||
.byte An4 , v052
|
||||
.byte W03
|
||||
.byte An4 , v120
|
||||
.byte W03
|
||||
.byte An4 , v052
|
||||
.byte W03
|
||||
.byte VOL , 31*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte BEND , c_v+0
|
||||
.byte N48 , Gs4 , v127
|
||||
.byte W03
|
||||
.byte VOL , 34*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 38*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 43*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte VOL , 49*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 56*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 67*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 74*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 82*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 91*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 94*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W18
|
||||
.byte N06 , Gs4 , v048
|
||||
.byte W09
|
||||
.byte MOD , 0
|
||||
.byte W15
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_3:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 87
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 47*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte PAN , c_v+63
|
||||
.byte W12
|
||||
.byte BEND , c_v+0
|
||||
.byte N24 , Bn3 , v120
|
||||
.byte W12
|
||||
.byte MOD , 4
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N24 , Cs4
|
||||
.byte W12
|
||||
.byte MOD , 4
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N24 , Ds4
|
||||
.byte W12
|
||||
.byte MOD , 4
|
||||
.byte W12
|
||||
.byte 0
|
||||
.byte N06 , An4
|
||||
.byte W12
|
||||
.byte N03 , Fs4
|
||||
.byte W06
|
||||
.byte Gn4
|
||||
.byte W06
|
||||
.byte VOL , 28*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte BEND , c_v+0
|
||||
.byte N48 , Gs4
|
||||
.byte W12
|
||||
.byte MOD , 4
|
||||
.byte VOL , 38*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W12
|
||||
.byte 47*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W12
|
||||
.byte 59*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W12
|
||||
.byte MOD , 0
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_4:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 80
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 94*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W12
|
||||
.byte BEND , c_v+0
|
||||
.byte N09 , Bn1 , v096
|
||||
.byte W12
|
||||
.byte N03 , En2
|
||||
.byte W06
|
||||
.byte Bn1
|
||||
.byte W06
|
||||
.byte N24 , An1
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W18
|
||||
.byte 0
|
||||
.byte N06 , Gs1
|
||||
.byte W12
|
||||
.byte N03 , Bn1
|
||||
.byte W06
|
||||
.byte Gs1
|
||||
.byte W06
|
||||
.byte N09 , Fs1
|
||||
.byte W06
|
||||
.byte BEND , c_v+6
|
||||
.byte W03
|
||||
.byte c_v+0
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte Ds1
|
||||
.byte W06
|
||||
.byte VOL , 28*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N48 , En1 , v127
|
||||
.byte W03
|
||||
.byte VOL , 31*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 32*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 35*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 40*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte MOD , 6
|
||||
.byte W03
|
||||
.byte VOL , 48*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 53*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 62*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 66*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 70*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 77*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 88*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 94*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W14
|
||||
.byte MOD , 0
|
||||
.byte W22
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_5:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 81
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 71*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W12
|
||||
.byte N06 , Bn3 , v127
|
||||
.byte W06
|
||||
.byte MOD , 4
|
||||
.byte N06 , Bn3 , v052
|
||||
.byte W06
|
||||
.byte N03 , Bn3 , v120
|
||||
.byte W03
|
||||
.byte Bn3 , v052
|
||||
.byte W03
|
||||
.byte Bn3 , v120
|
||||
.byte W03
|
||||
.byte Bn3 , v052
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte N06 , Gs3 , v127
|
||||
.byte W06
|
||||
.byte MOD , 4
|
||||
.byte N06 , Gs3 , v052
|
||||
.byte W06
|
||||
.byte N03 , Gs3 , v120
|
||||
.byte W03
|
||||
.byte Gs3 , v052
|
||||
.byte W03
|
||||
.byte Gs3 , v120
|
||||
.byte W03
|
||||
.byte Gs3 , v052
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte N06 , En4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 4
|
||||
.byte N06 , En4 , v052
|
||||
.byte W06
|
||||
.byte N03 , En4 , v120
|
||||
.byte W03
|
||||
.byte En4 , v052
|
||||
.byte W03
|
||||
.byte En4 , v120
|
||||
.byte W03
|
||||
.byte En4 , v052
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte N06 , Bn3 , v127
|
||||
.byte W06
|
||||
.byte Bn3 , v052
|
||||
.byte W06
|
||||
.byte N03 , Bn3 , v120
|
||||
.byte W03
|
||||
.byte Bn3 , v052
|
||||
.byte W03
|
||||
.byte Bn3 , v120
|
||||
.byte W03
|
||||
.byte Bn3 , v052
|
||||
.byte W03
|
||||
.byte VOL , 19*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N48 , En4 , v127
|
||||
.byte W03
|
||||
.byte VOL , 22*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 25*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 4
|
||||
.byte VOL , 26*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 28*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 34*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 40*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 46*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 51*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 59*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 68*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 82*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W15
|
||||
.byte MOD , 0
|
||||
.byte N06 , En4 , v040
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_6:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 2
|
||||
.byte PAN , c_v+32
|
||||
.byte VOL , 65*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte BEND , c_v+0
|
||||
.byte W12
|
||||
.byte N06 , Gs3 , v127
|
||||
.byte W06
|
||||
.byte Gs3 , v052
|
||||
.byte W06
|
||||
.byte N03 , Gs3 , v120
|
||||
.byte W03
|
||||
.byte Gs3 , v052
|
||||
.byte W03
|
||||
.byte Gs3 , v120
|
||||
.byte W03
|
||||
.byte Gs3 , v052
|
||||
.byte W03
|
||||
.byte N06 , En3 , v127
|
||||
.byte W06
|
||||
.byte En3 , v052
|
||||
.byte W06
|
||||
.byte N03 , En3 , v120
|
||||
.byte W03
|
||||
.byte En3 , v052
|
||||
.byte W03
|
||||
.byte En3 , v120
|
||||
.byte W03
|
||||
.byte En3 , v052
|
||||
.byte W03
|
||||
.byte N06 , Bn3 , v127
|
||||
.byte W06
|
||||
.byte Bn3 , v052
|
||||
.byte W06
|
||||
.byte N03 , Bn3 , v120
|
||||
.byte W03
|
||||
.byte Bn3 , v052
|
||||
.byte W03
|
||||
.byte Bn3 , v120
|
||||
.byte W03
|
||||
.byte Bn3 , v052
|
||||
.byte W03
|
||||
.byte N06 , An3 , v127
|
||||
.byte W06
|
||||
.byte An3 , v052
|
||||
.byte W06
|
||||
.byte N03 , An3 , v120
|
||||
.byte W03
|
||||
.byte An3 , v052
|
||||
.byte W03
|
||||
.byte An3 , v120
|
||||
.byte W03
|
||||
.byte An3 , v052
|
||||
.byte W03
|
||||
.byte N48 , Gs3 , v127
|
||||
.byte W72
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_7:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 82*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte N12 , Cn1 , v127
|
||||
.byte W12
|
||||
.byte N06 , Cn1 , v096
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N12 , Dn1 , v092
|
||||
.byte W18
|
||||
.byte N06 , Cn1 , v076
|
||||
.byte W06
|
||||
.byte N12 , Cn1 , v096
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte VOL , 94*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N06 , Dn2 , v088
|
||||
.byte W06
|
||||
.byte N05 , An1 , v104
|
||||
.byte W06
|
||||
.byte N06 , Gn1 , v112
|
||||
.byte W06
|
||||
.byte Fn1
|
||||
.byte W06
|
||||
.byte VOL , 71*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N06 , En1 , v120
|
||||
.byte N42 , An2
|
||||
.byte W06
|
||||
.byte N03 , En1 , v064
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte En1 , v064
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte En1 , v064
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte VOL , 74*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N03 , En1 , v064
|
||||
.byte W03
|
||||
.byte VOL , 81*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N03 , En1 , v048
|
||||
.byte W03
|
||||
.byte VOL , 82*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N03 , En1 , v088
|
||||
.byte W03
|
||||
.byte VOL , 86*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N03 , En1 , v056
|
||||
.byte W03
|
||||
.byte VOL , 88*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N03 , En1 , v088
|
||||
.byte W03
|
||||
.byte VOL , 92*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N03 , En1 , v060
|
||||
.byte W03
|
||||
.byte En1 , v104
|
||||
.byte N03 , Cn2
|
||||
.byte W03
|
||||
.byte En1 , v072
|
||||
.byte N03 , An1 , v092
|
||||
.byte W03
|
||||
.byte VOL , 82*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte N06 , En1 , v064
|
||||
.byte N06 , Fn1 , v112
|
||||
.byte N24 , Cs2 , v080
|
||||
.byte W06
|
||||
.byte VOL , 71*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 65*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 59*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 47*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 41*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte 35*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W03
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 8 **********************@
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught_8:
|
||||
.byte KEYSH , bgm_frlg_fanfa_pokemon_caught_key+0
|
||||
.byte VOICE , 1
|
||||
.byte VOL , 71*bgm_frlg_fanfa_pokemon_caught_mvl/mxv
|
||||
.byte W12
|
||||
.byte W72
|
||||
.byte PAN , c_v-32
|
||||
.byte N12 , Bn4 , v052
|
||||
.byte W12
|
||||
.byte PAN , c_v+32
|
||||
.byte N36 , Bn4 , v080
|
||||
.byte W12
|
||||
.byte W72
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_fanfa_pokemon_caught:
|
||||
.byte 8 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_fanfa_pokemon_caught_pri @ Priority
|
||||
.byte bgm_frlg_fanfa_pokemon_caught_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_fanfa_pokemon_caught_grp
|
||||
|
||||
.word bgm_frlg_fanfa_pokemon_caught_1
|
||||
.word bgm_frlg_fanfa_pokemon_caught_2
|
||||
.word bgm_frlg_fanfa_pokemon_caught_3
|
||||
.word bgm_frlg_fanfa_pokemon_caught_4
|
||||
.word bgm_frlg_fanfa_pokemon_caught_5
|
||||
.word bgm_frlg_fanfa_pokemon_caught_6
|
||||
.word bgm_frlg_fanfa_pokemon_caught_7
|
||||
.word bgm_frlg_fanfa_pokemon_caught_8
|
||||
|
||||
.end
|
||||
258
sound/songs/bgm_frlg_fanfa_trainercard_photo.s
Normal file
258
sound/songs/bgm_frlg_fanfa_trainercard_photo.s
Normal file
@ -0,0 +1,258 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_grp, voicegroup_86B0FF0
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_pri, 5
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_rev, reverb_set+50
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_mvl, 127
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_key, 0
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_tbs, 1
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_exg, 0
|
||||
.equ bgm_frlg_fanfa_trainercard_photo_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_fanfa_trainercard_photo
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_fanfa_trainercard_photo_1:
|
||||
.byte KEYSH , bgm_frlg_fanfa_trainercard_photo_key+0
|
||||
.byte TEMPO , 192*bgm_frlg_fanfa_trainercard_photo_tbs/2
|
||||
.byte VOICE , 1
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 81*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte BEND , c_v+2
|
||||
.byte N03 , Ds4 , v068
|
||||
.byte W03
|
||||
.byte Dn4 , v032
|
||||
.byte W03
|
||||
.byte Fn4 , v068
|
||||
.byte W03
|
||||
.byte Ds4 , v032
|
||||
.byte W03
|
||||
.byte Gn4 , v068
|
||||
.byte W03
|
||||
.byte Fn4 , v032
|
||||
.byte W03
|
||||
.byte As4 , v068
|
||||
.byte W03
|
||||
.byte Gn4 , v032
|
||||
.byte W03
|
||||
.byte Ds5 , v068
|
||||
.byte W03
|
||||
.byte As4 , v032
|
||||
.byte W03
|
||||
.byte Fn5 , v068
|
||||
.byte W03
|
||||
.byte Dn5 , v032
|
||||
.byte W03
|
||||
.byte Gn5 , v068
|
||||
.byte W03
|
||||
.byte Ds5 , v032
|
||||
.byte W03
|
||||
.byte As5 , v068
|
||||
.byte W03
|
||||
.byte Gn5 , v032
|
||||
.byte W03
|
||||
.byte Ds6 , v068
|
||||
.byte W03
|
||||
.byte As5 , v056
|
||||
.byte W03
|
||||
.byte Ds6 , v048
|
||||
.byte W03
|
||||
.byte As5 , v040
|
||||
.byte W03
|
||||
.byte Ds6 , v028
|
||||
.byte W03
|
||||
.byte As5 , v024
|
||||
.byte W03
|
||||
.byte Ds6 , v016
|
||||
.byte W03
|
||||
.byte As5 , v008
|
||||
.byte W03
|
||||
.byte VOL , 0*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte W24
|
||||
.byte 0*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_fanfa_trainercard_photo_2:
|
||||
.byte KEYSH , bgm_frlg_fanfa_trainercard_photo_key+0
|
||||
.byte VOICE , 5
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte PAN , c_v-32
|
||||
.byte VOL , 67*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte BEND , c_v+0
|
||||
.byte N03 , Gn4 , v068
|
||||
.byte W03
|
||||
.byte Dn4 , v032
|
||||
.byte W03
|
||||
.byte Gn4 , v068
|
||||
.byte W03
|
||||
.byte Ds4 , v032
|
||||
.byte W03
|
||||
.byte Gn4 , v068
|
||||
.byte W03
|
||||
.byte Fn4 , v032
|
||||
.byte W03
|
||||
.byte As4 , v068
|
||||
.byte W03
|
||||
.byte Gn4 , v032
|
||||
.byte W03
|
||||
.byte Ds5 , v068
|
||||
.byte W03
|
||||
.byte As4 , v032
|
||||
.byte W03
|
||||
.byte Fn5 , v068
|
||||
.byte W03
|
||||
.byte Dn5 , v032
|
||||
.byte W03
|
||||
.byte Gn5 , v068
|
||||
.byte W03
|
||||
.byte Ds5 , v032
|
||||
.byte W03
|
||||
.byte As5 , v068
|
||||
.byte W03
|
||||
.byte Gn5 , v032
|
||||
.byte W03
|
||||
.byte Ds6 , v068
|
||||
.byte W03
|
||||
.byte As5 , v056
|
||||
.byte W03
|
||||
.byte Ds6 , v048
|
||||
.byte W03
|
||||
.byte As5 , v040
|
||||
.byte W03
|
||||
.byte Ds6 , v028
|
||||
.byte W03
|
||||
.byte As5 , v024
|
||||
.byte W03
|
||||
.byte Ds6 , v016
|
||||
.byte W03
|
||||
.byte As5 , v008
|
||||
.byte W03
|
||||
.byte VOL , 1*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_fanfa_trainercard_photo_3:
|
||||
.byte KEYSH , bgm_frlg_fanfa_trainercard_photo_key+0
|
||||
.byte VOICE , 4
|
||||
.byte XCMD , xIECV , 8
|
||||
.byte xIECL , 8
|
||||
.byte PAN , c_v+32
|
||||
.byte VOL , 59*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte N03 , Ds3 , v068
|
||||
.byte W03
|
||||
.byte Dn3 , v032
|
||||
.byte W03
|
||||
.byte Fn3 , v068
|
||||
.byte W03
|
||||
.byte Ds3 , v032
|
||||
.byte W03
|
||||
.byte Gn3 , v068
|
||||
.byte W03
|
||||
.byte Fn3 , v032
|
||||
.byte W03
|
||||
.byte As3 , v068
|
||||
.byte W03
|
||||
.byte Gn3 , v032
|
||||
.byte W03
|
||||
.byte Ds4 , v068
|
||||
.byte W03
|
||||
.byte As3 , v032
|
||||
.byte W03
|
||||
.byte Fn4 , v068
|
||||
.byte W03
|
||||
.byte Dn4 , v032
|
||||
.byte W03
|
||||
.byte Gn4 , v068
|
||||
.byte W03
|
||||
.byte Ds4 , v032
|
||||
.byte W03
|
||||
.byte As4 , v068
|
||||
.byte W03
|
||||
.byte Gn4 , v032
|
||||
.byte W03
|
||||
.byte Ds5 , v068
|
||||
.byte W03
|
||||
.byte As4 , v056
|
||||
.byte W03
|
||||
.byte Ds5 , v048
|
||||
.byte W03
|
||||
.byte As4 , v040
|
||||
.byte W03
|
||||
.byte Ds5 , v028
|
||||
.byte W03
|
||||
.byte As4 , v024
|
||||
.byte W03
|
||||
.byte Ds5 , v016
|
||||
.byte W03
|
||||
.byte As4 , v008
|
||||
.byte W03
|
||||
.byte VOL , 1*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte W24
|
||||
.byte 0*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_fanfa_trainercard_photo_4:
|
||||
.byte KEYSH , bgm_frlg_fanfa_trainercard_photo_key+0
|
||||
.byte VOICE , 127
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 63*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte BEND , c_v+0
|
||||
.byte N01 , Cn5 , v112
|
||||
.byte W02
|
||||
.byte An5
|
||||
.byte W14
|
||||
.byte N03 , Gs5 , v120
|
||||
.byte W08
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_fanfa_trainercard_photo_5:
|
||||
.byte KEYSH , bgm_frlg_fanfa_trainercard_photo_key+0
|
||||
.byte VOICE , 126
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 100*bgm_frlg_fanfa_trainercard_photo_mvl/mxv
|
||||
.byte N02 , Cs3 , v127
|
||||
.byte W10
|
||||
.byte N01 , Bn3 , v116
|
||||
.byte W06
|
||||
.byte N02 , En4 , v127
|
||||
.byte W08
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_fanfa_trainercard_photo:
|
||||
.byte 5 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_fanfa_trainercard_photo_pri @ Priority
|
||||
.byte bgm_frlg_fanfa_trainercard_photo_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_fanfa_trainercard_photo_grp
|
||||
|
||||
.word bgm_frlg_fanfa_trainercard_photo_1
|
||||
.word bgm_frlg_fanfa_trainercard_photo_2
|
||||
.word bgm_frlg_fanfa_trainercard_photo_3
|
||||
.word bgm_frlg_fanfa_trainercard_photo_4
|
||||
.word bgm_frlg_fanfa_trainercard_photo_5
|
||||
|
||||
.end
|
||||
305
sound/songs/bgm_frlg_flute.s
Normal file
305
sound/songs/bgm_frlg_flute.s
Normal file
@ -0,0 +1,305 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_flute_grp, voicegroup_86AC538
|
||||
.equ bgm_frlg_flute_pri, 5
|
||||
.equ bgm_frlg_flute_rev, reverb_set+50
|
||||
.equ bgm_frlg_flute_mvl, 127
|
||||
.equ bgm_frlg_flute_key, 0
|
||||
.equ bgm_frlg_flute_tbs, 1
|
||||
.equ bgm_frlg_flute_exg, 0
|
||||
.equ bgm_frlg_flute_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_flute
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_flute_1:
|
||||
.byte KEYSH , bgm_frlg_flute_key+0
|
||||
.byte TEMPO , 80*bgm_frlg_flute_tbs/2
|
||||
.byte VOICE , 73
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte BEND , c_v+2
|
||||
.byte N12 , En4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Fn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N24 , Gn4
|
||||
.byte W12
|
||||
.byte MOD , 7
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 18*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 12*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , An4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Gn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N36 , Cn5
|
||||
.byte W12
|
||||
.byte MOD , 7
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 18*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte W12
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Dn5
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Cn5
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Gn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , An4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Fn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 41*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte MOD , 0
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte N48 , Gn4
|
||||
.byte W03
|
||||
.byte VOL , 31*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte VOL , 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 19*bgm_frlg_flute_mvl/mxv
|
||||
.byte W06
|
||||
.byte 15*bgm_frlg_flute_mvl/mxv
|
||||
.byte W09
|
||||
.byte 11*bgm_frlg_flute_mvl/mxv
|
||||
.byte W09
|
||||
.byte 8*bgm_frlg_flute_mvl/mxv
|
||||
.byte W15
|
||||
.byte MOD , 0
|
||||
.byte W72
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_flute_2:
|
||||
.byte KEYSH , bgm_frlg_flute_key+0
|
||||
.byte VOICE , 75
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N12 , En3 , v127
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Fn3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N24 , Gn3
|
||||
.byte W06
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 7
|
||||
.byte VOL , 12*bgm_frlg_flute_mvl/mxv
|
||||
.byte W12
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , An3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Gn3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N36 , Cn4
|
||||
.byte W06
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 7
|
||||
.byte VOL , 12*bgm_frlg_flute_mvl/mxv
|
||||
.byte W12
|
||||
.byte W12
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Dn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Cn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Gn3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , An3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N12 , Fn3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 0
|
||||
.byte VOL , 48*bgm_frlg_flute_mvl/mxv
|
||||
.byte N48 , Gn3
|
||||
.byte W03
|
||||
.byte VOL , 43*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte MOD , 6
|
||||
.byte VOL , 36*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 24*bgm_frlg_flute_mvl/mxv
|
||||
.byte W03
|
||||
.byte 18*bgm_frlg_flute_mvl/mxv
|
||||
.byte W12
|
||||
.byte W24
|
||||
.byte MOD , 0
|
||||
.byte W72
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_flute:
|
||||
.byte 2 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_flute_pri @ Priority
|
||||
.byte bgm_frlg_flute_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_flute_grp
|
||||
|
||||
.word bgm_frlg_flute_1
|
||||
.word bgm_frlg_flute_2
|
||||
|
||||
.end
|
||||
1048
sound/songs/bgm_frlg_follow_me.s
Normal file
1048
sound/songs/bgm_frlg_follow_me.s
Normal file
File diff suppressed because it is too large
Load Diff
156
sound/songs/bgm_frlg_game_explanation_end.s
Normal file
156
sound/songs/bgm_frlg_game_explanation_end.s
Normal file
@ -0,0 +1,156 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_game_explanation_end_grp, voicegroup_86B1824
|
||||
.equ bgm_frlg_game_explanation_end_pri, 0
|
||||
.equ bgm_frlg_game_explanation_end_rev, reverb_set+50
|
||||
.equ bgm_frlg_game_explanation_end_mvl, 127
|
||||
.equ bgm_frlg_game_explanation_end_key, 0
|
||||
.equ bgm_frlg_game_explanation_end_tbs, 1
|
||||
.equ bgm_frlg_game_explanation_end_exg, 0
|
||||
.equ bgm_frlg_game_explanation_end_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_game_explanation_end
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_1:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte TEMPO , 120*bgm_frlg_game_explanation_end_tbs/2
|
||||
.byte VOICE , 56
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+28
|
||||
.byte VOL , 67*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte W24
|
||||
.byte N06 , Gn3 , v120
|
||||
.byte W24
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_2:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte VOICE , 60
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 81*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte W24
|
||||
.byte N06 , Bn3 , v120
|
||||
.byte W24
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_3:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte VOICE , 58
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte VOL , 88*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N24 , Fs1 , v120
|
||||
.byte W48
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_4:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte VOICE , 48
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v-24
|
||||
.byte VOL , 67*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte W24
|
||||
.byte N06 , Bn2 , v120
|
||||
.byte W24
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_5:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte VOICE , 47
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 86*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte PAN , c_v+2
|
||||
.byte W24
|
||||
.byte N15 , Gn2 , v120
|
||||
.byte W24
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_6:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte VOICE , 81
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 50*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N24 , Fs1 , v120
|
||||
.byte W24
|
||||
.byte N06 , Gn1
|
||||
.byte W24
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_end_7:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_end_key+0
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 86*bgm_frlg_game_explanation_end_mvl/mxv
|
||||
.byte N03 , En1 , v120
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N06 , En1 , v120
|
||||
.byte N48 , An2 , v096
|
||||
.byte W24
|
||||
.byte W48
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_game_explanation_end:
|
||||
.byte 7 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_game_explanation_end_pri @ Priority
|
||||
.byte bgm_frlg_game_explanation_end_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_game_explanation_end_grp
|
||||
|
||||
.word bgm_frlg_game_explanation_end_1
|
||||
.word bgm_frlg_game_explanation_end_2
|
||||
.word bgm_frlg_game_explanation_end_3
|
||||
.word bgm_frlg_game_explanation_end_4
|
||||
.word bgm_frlg_game_explanation_end_5
|
||||
.word bgm_frlg_game_explanation_end_6
|
||||
.word bgm_frlg_game_explanation_end_7
|
||||
|
||||
.end
|
||||
405
sound/songs/bgm_frlg_game_explanation_middle.s
Normal file
405
sound/songs/bgm_frlg_game_explanation_middle.s
Normal file
@ -0,0 +1,405 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_game_explanation_middle_grp, voicegroup_86B1824
|
||||
.equ bgm_frlg_game_explanation_middle_pri, 0
|
||||
.equ bgm_frlg_game_explanation_middle_rev, reverb_set+50
|
||||
.equ bgm_frlg_game_explanation_middle_mvl, 127
|
||||
.equ bgm_frlg_game_explanation_middle_key, 0
|
||||
.equ bgm_frlg_game_explanation_middle_tbs, 1
|
||||
.equ bgm_frlg_game_explanation_middle_exg, 0
|
||||
.equ bgm_frlg_game_explanation_middle_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_game_explanation_middle
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_middle_1:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_middle_key+0
|
||||
bgm_frlg_game_explanation_middle_1_B1:
|
||||
.byte TEMPO , 120*bgm_frlg_game_explanation_middle_tbs/2
|
||||
.byte VOICE , 56
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+23
|
||||
.byte VOL , 67*bgm_frlg_game_explanation_middle_mvl/mxv
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte N06 , Gn3 , v120
|
||||
.byte W96
|
||||
.byte W72
|
||||
.byte N24 , Fs3
|
||||
.byte W24
|
||||
.byte N06 , Gn3
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_middle_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_middle_2:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_middle_key+0
|
||||
bgm_frlg_game_explanation_middle_2_B1:
|
||||
.byte VOICE , 58
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte VOL , 88*bgm_frlg_game_explanation_middle_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N12 , Gn1 , v120
|
||||
.byte W36
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W48
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N24 , Fs1
|
||||
.byte W24
|
||||
bgm_frlg_game_explanation_middle_2_000:
|
||||
.byte N12 , Gn1 , v120
|
||||
.byte W36
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W48
|
||||
.byte PEND
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N24 , Dn1
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_frlg_game_explanation_middle_2_000
|
||||
.byte N06 , Gn1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N24 , Dn1
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_middle_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_middle_3:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_middle_key+0
|
||||
bgm_frlg_game_explanation_middle_3_B1:
|
||||
.byte VOICE , 48
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v-16
|
||||
.byte VOL , 70*bgm_frlg_game_explanation_middle_mvl/mxv
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte N06 , Bn2 , v120
|
||||
.byte W96
|
||||
.byte W72
|
||||
.byte N24 , As2
|
||||
.byte W24
|
||||
.byte N06 , Bn2
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_middle_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_middle_4:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_middle_key+0
|
||||
bgm_frlg_game_explanation_middle_4_B1:
|
||||
.byte VOICE , 47
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 86*bgm_frlg_game_explanation_middle_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N12 , Gn2 , v120
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte N12
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte N12
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_middle_4_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_middle_5:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_middle_key+0
|
||||
bgm_frlg_game_explanation_middle_5_B1:
|
||||
.byte VOICE , 81
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 50*bgm_frlg_game_explanation_middle_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte N12 , Gn1 , v120
|
||||
.byte W36
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W48
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N24 , Fs1
|
||||
.byte W24
|
||||
bgm_frlg_game_explanation_middle_5_000:
|
||||
.byte N12 , Gn1 , v120
|
||||
.byte W36
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N03
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W48
|
||||
.byte PEND
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N24 , Dn1
|
||||
.byte W24
|
||||
.byte PATT
|
||||
.word bgm_frlg_game_explanation_middle_5_000
|
||||
.byte N06 , Gn1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N24 , Dn1
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_middle_5_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_middle_6:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_middle_key+0
|
||||
bgm_frlg_game_explanation_middle_6_B1:
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 85*bgm_frlg_game_explanation_middle_mvl/mxv
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
bgm_frlg_game_explanation_middle_6_000:
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte PEND
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte PATT
|
||||
.word bgm_frlg_game_explanation_middle_6_000
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v120
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_middle_6_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_game_explanation_middle:
|
||||
.byte 6 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_game_explanation_middle_pri @ Priority
|
||||
.byte bgm_frlg_game_explanation_middle_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_game_explanation_middle_grp
|
||||
|
||||
.word bgm_frlg_game_explanation_middle_1
|
||||
.word bgm_frlg_game_explanation_middle_2
|
||||
.word bgm_frlg_game_explanation_middle_3
|
||||
.word bgm_frlg_game_explanation_middle_4
|
||||
.word bgm_frlg_game_explanation_middle_5
|
||||
.word bgm_frlg_game_explanation_middle_6
|
||||
|
||||
.end
|
||||
115
sound/songs/bgm_frlg_game_explanation_start.s
Normal file
115
sound/songs/bgm_frlg_game_explanation_start.s
Normal file
@ -0,0 +1,115 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_game_explanation_start_grp, voicegroup_86B1824
|
||||
.equ bgm_frlg_game_explanation_start_pri, 0
|
||||
.equ bgm_frlg_game_explanation_start_rev, reverb_set+50
|
||||
.equ bgm_frlg_game_explanation_start_mvl, 127
|
||||
.equ bgm_frlg_game_explanation_start_key, 0
|
||||
.equ bgm_frlg_game_explanation_start_tbs, 1
|
||||
.equ bgm_frlg_game_explanation_start_exg, 0
|
||||
.equ bgm_frlg_game_explanation_start_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_game_explanation_start
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_game_explanation_start_1:
|
||||
.byte KEYSH , bgm_frlg_game_explanation_start_key+0
|
||||
.byte TEMPO , 120*bgm_frlg_game_explanation_start_tbs/2
|
||||
.byte VOICE , 0
|
||||
.byte VOL , 85*bgm_frlg_game_explanation_start_mvl/mxv
|
||||
.byte N03 , En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
bgm_frlg_game_explanation_start_1_B1:
|
||||
bgm_frlg_game_explanation_start_1_000:
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W24
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte PEND
|
||||
bgm_frlg_game_explanation_start_1_001:
|
||||
.byte N06 , En1 , v120
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W18
|
||||
.byte N06
|
||||
.byte W12
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte N06
|
||||
.byte W06
|
||||
.byte En1 , v084
|
||||
.byte W06
|
||||
.byte En1 , v120
|
||||
.byte W12
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte En1 , v048
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte N03
|
||||
.byte W03
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_frlg_game_explanation_start_1_000
|
||||
.byte PATT
|
||||
.word bgm_frlg_game_explanation_start_1_001
|
||||
.byte GOTO
|
||||
.word bgm_frlg_game_explanation_start_1_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_game_explanation_start:
|
||||
.byte 1 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_game_explanation_start_pri @ Priority
|
||||
.byte bgm_frlg_game_explanation_start_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_game_explanation_start_grp
|
||||
|
||||
.word bgm_frlg_game_explanation_start_1
|
||||
|
||||
.end
|
||||
2708
sound/songs/bgm_frlg_gamecorner.s
Normal file
2708
sound/songs/bgm_frlg_gamecorner.s
Normal file
File diff suppressed because it is too large
Load Diff
2087
sound/songs/bgm_frlg_gamefreak_logo.s
Normal file
2087
sound/songs/bgm_frlg_gamefreak_logo.s
Normal file
File diff suppressed because it is too large
Load Diff
693
sound/songs/bgm_frlg_girl_eye.s
Normal file
693
sound/songs/bgm_frlg_girl_eye.s
Normal file
@ -0,0 +1,693 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_girl_eye_grp, voicegroup_86A4BF4
|
||||
.equ bgm_frlg_girl_eye_pri, 0
|
||||
.equ bgm_frlg_girl_eye_rev, reverb_set+50
|
||||
.equ bgm_frlg_girl_eye_mvl, 127
|
||||
.equ bgm_frlg_girl_eye_key, 0
|
||||
.equ bgm_frlg_girl_eye_tbs, 1
|
||||
.equ bgm_frlg_girl_eye_exg, 0
|
||||
.equ bgm_frlg_girl_eye_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_girl_eye
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_1:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte TEMPO , 174*bgm_frlg_girl_eye_tbs/2
|
||||
.byte VOICE , 1
|
||||
.byte VOL , 51*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte PAN , c_v-29
|
||||
.byte N18 , En4 , v104
|
||||
.byte W12
|
||||
.byte W24
|
||||
.byte N03 , Cn4 , v127
|
||||
.byte W12
|
||||
.byte Bn3
|
||||
.byte W12
|
||||
.byte An3
|
||||
.byte W12
|
||||
.byte N12 , Gs3
|
||||
.byte W12
|
||||
bgm_frlg_girl_eye_1_B1:
|
||||
bgm_frlg_girl_eye_1_000:
|
||||
.byte N03 , Gn3 , v127
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte N03 , Fs3
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte N06 , An3 , v120
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_frlg_girl_eye_1_000
|
||||
.byte N03 , Fn3 , v127
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_1_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_2:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 1
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 49*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte N12 , Gn4 , v127
|
||||
.byte W12
|
||||
.byte N72 , Gn5
|
||||
.byte W72
|
||||
bgm_frlg_girl_eye_2_B1:
|
||||
.byte VOICE , 24
|
||||
.byte N12 , Gn4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4 , v096
|
||||
.byte W09
|
||||
.byte N01
|
||||
.byte W03
|
||||
.byte N24 , Bn4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 2
|
||||
.byte W18
|
||||
.byte 0
|
||||
.byte N12 , Cn5
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4 , v096
|
||||
.byte W12
|
||||
.byte N12 , Bn4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Gn4 , v096
|
||||
.byte W12
|
||||
.byte N12 , An4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , Gn4
|
||||
.byte W12
|
||||
.byte N12 , Fs4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , En4
|
||||
.byte W12
|
||||
.byte N12 , Ds4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , En4
|
||||
.byte W12
|
||||
.byte N12 , Fs4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , An4
|
||||
.byte W12
|
||||
.byte N12 , Gn4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4 , v096
|
||||
.byte W09
|
||||
.byte N01
|
||||
.byte W03
|
||||
.byte N24 , An4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 2
|
||||
.byte W18
|
||||
.byte 0
|
||||
.byte N12 , Gn4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4 , v096
|
||||
.byte W12
|
||||
.byte N12 , Fn4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , En4 , v120
|
||||
.byte W12
|
||||
.byte N12 , En4 , v127
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , Dn4
|
||||
.byte W12
|
||||
.byte N12 , Cn4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , Bn3
|
||||
.byte W12
|
||||
.byte N12 , Cn4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , Dn4
|
||||
.byte W12
|
||||
.byte N12 , En4
|
||||
.byte W06
|
||||
.byte MOD , 3
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N03 , Fn4
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_2_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 3 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_3:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 17
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte PAN , c_v-40
|
||||
.byte W12
|
||||
.byte W36
|
||||
.byte N03 , An4 , v104
|
||||
.byte W12
|
||||
.byte Gn4
|
||||
.byte W12
|
||||
.byte N12 , Fn4
|
||||
.byte W12
|
||||
bgm_frlg_girl_eye_3_B1:
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte N84 , En4 , v120
|
||||
.byte W09
|
||||
.byte VOL , 11*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 16*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W09
|
||||
.byte 22*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 28*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 34*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 7
|
||||
.byte W12
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 45*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N06 , An4
|
||||
.byte W06
|
||||
.byte Fn4
|
||||
.byte W06
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte N84 , Ds4
|
||||
.byte W09
|
||||
.byte VOL , 11*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 16*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W09
|
||||
.byte 22*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 28*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 34*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 7
|
||||
.byte W12
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 45*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N06 , Fn4
|
||||
.byte W06
|
||||
.byte Dn4
|
||||
.byte W06
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte N84 , En4
|
||||
.byte W09
|
||||
.byte VOL , 11*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 16*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W09
|
||||
.byte 22*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 28*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 34*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 7
|
||||
.byte W12
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 45*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N06 , Gn4
|
||||
.byte W06
|
||||
.byte En4
|
||||
.byte W06
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte N84 , Dn4
|
||||
.byte W09
|
||||
.byte VOL , 11*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W06
|
||||
.byte 16*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W09
|
||||
.byte 22*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 28*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 34*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 7
|
||||
.byte W12
|
||||
.byte VOL , 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 45*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte 39*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte MOD , 0
|
||||
.byte N06 , Fn4
|
||||
.byte W06
|
||||
.byte An4
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_3_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 4 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_4:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 80
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte LFOS , 44
|
||||
.byte VOL , 45*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte PAN , c_v+0
|
||||
.byte W12
|
||||
.byte W72
|
||||
bgm_frlg_girl_eye_4_B1:
|
||||
.byte N06 , Cn2 , v127
|
||||
.byte W24
|
||||
.byte N24 , En1 , v120
|
||||
.byte W24
|
||||
.byte N06 , Cn2 , v127
|
||||
.byte W24
|
||||
.byte N12 , En1
|
||||
.byte W12
|
||||
.byte Fn1
|
||||
.byte W12
|
||||
.byte N06 , Cn2
|
||||
.byte W24
|
||||
.byte N24 , Ds1
|
||||
.byte W24
|
||||
.byte N06 , Cn2
|
||||
.byte W24
|
||||
.byte N12 , Ds1
|
||||
.byte W12
|
||||
.byte N15 , Gn1 , v120
|
||||
.byte W12
|
||||
.byte N06 , Cn2 , v127
|
||||
.byte W24
|
||||
.byte N24 , En1
|
||||
.byte W24
|
||||
.byte N06 , Cn2
|
||||
.byte W24
|
||||
.byte N24 , En1
|
||||
.byte W24
|
||||
.byte N06 , Cn2 , v120
|
||||
.byte W24
|
||||
.byte N24 , Dn1 , v127
|
||||
.byte W24
|
||||
.byte N06 , Cn2
|
||||
.byte W24
|
||||
.byte N24 , Dn1
|
||||
.byte W24
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_4_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 5 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_5:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 1
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte VOL , 46*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte PAN , c_v+47
|
||||
.byte BEND , c_v+1
|
||||
.byte N12 , Gn4 , v104
|
||||
.byte W12
|
||||
.byte N72 , Gn5
|
||||
.byte W72
|
||||
bgm_frlg_girl_eye_5_B1:
|
||||
.byte PAN , c_v+32
|
||||
.byte BEND , c_v+0
|
||||
.byte N03 , Cn3 , v120
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
bgm_frlg_girl_eye_5_000:
|
||||
.byte N03 , Cn3 , v127
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N03
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte PEND
|
||||
.byte PATT
|
||||
.word bgm_frlg_girl_eye_5_000
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_5_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 6 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_6:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 48
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+0
|
||||
.byte VOL , 45*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte N12 , Gn4 , v127
|
||||
.byte W12
|
||||
.byte N72 , Gn5
|
||||
.byte W24
|
||||
.byte VOL , 41*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 38*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 36*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 34*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 31*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 29*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 25*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 22*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 20*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 17*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 14*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 12*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 9*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 7*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 5*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
.byte 2*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W03
|
||||
bgm_frlg_girl_eye_6_B1:
|
||||
.byte VOL , 0*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_6_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 7 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_7:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 81
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+63
|
||||
.byte VOL , 28*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte W72
|
||||
bgm_frlg_girl_eye_7_B1:
|
||||
bgm_frlg_girl_eye_7_000:
|
||||
.byte N12 , Cn4 , v120
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte W12
|
||||
.byte N24 , Dn4
|
||||
.byte W06
|
||||
.byte MOD , 5
|
||||
.byte W18
|
||||
.byte 0
|
||||
.byte N12 , En4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte W12
|
||||
.byte N12 , Dn4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte N12 , Ds4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4
|
||||
.byte W12
|
||||
.byte N12 , Ds4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4
|
||||
.byte W12
|
||||
.byte N12
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Gn3
|
||||
.byte W12
|
||||
.byte N12 , Ds4
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Cn4
|
||||
.byte W12
|
||||
.byte PATT
|
||||
.word bgm_frlg_girl_eye_7_000
|
||||
.byte N12 , Cn4 , v120
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Bn3
|
||||
.byte W12
|
||||
.byte N12 , An3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Gn3
|
||||
.byte W12
|
||||
.byte N12 , Fn3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Gn3
|
||||
.byte W12
|
||||
.byte N12 , An3
|
||||
.byte W06
|
||||
.byte MOD , 6
|
||||
.byte W06
|
||||
.byte 0
|
||||
.byte N01 , Bn3
|
||||
.byte W12
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_7_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 8 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_8:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 127
|
||||
.byte LFOS , 44
|
||||
.byte XCMD , xIECV , 18
|
||||
.byte xIECV , 16
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v-1
|
||||
.byte VOL , 51*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte W72
|
||||
bgm_frlg_girl_eye_8_B1:
|
||||
bgm_frlg_girl_eye_8_000:
|
||||
.byte N03 , Cn5 , v104
|
||||
.byte W24
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W36
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte PEND
|
||||
.byte Cn5 , v112
|
||||
.byte W24
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte Cn5 , v076
|
||||
.byte W06
|
||||
.byte Cn5 , v052
|
||||
.byte W06
|
||||
.byte Cn5 , v064
|
||||
.byte W06
|
||||
.byte Cn5 , v056
|
||||
.byte W06
|
||||
.byte Cn5 , v080
|
||||
.byte W06
|
||||
.byte Cn5 , v052
|
||||
.byte W06
|
||||
.byte Cn5 , v100
|
||||
.byte W06
|
||||
.byte Cn5 , v072
|
||||
.byte W06
|
||||
.byte PATT
|
||||
.word bgm_frlg_girl_eye_8_000
|
||||
.byte N03 , Cn5 , v112
|
||||
.byte W24
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v044
|
||||
.byte W12
|
||||
.byte Cn5 , v084
|
||||
.byte W12
|
||||
.byte Cn5 , v096
|
||||
.byte W06
|
||||
.byte Cn5 , v072
|
||||
.byte W06
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_8_B1
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 9 **********************@
|
||||
|
||||
bgm_frlg_girl_eye_9:
|
||||
.byte KEYSH , bgm_frlg_girl_eye_key+0
|
||||
.byte VOICE , 126
|
||||
.byte LFOS , 44
|
||||
.byte BENDR , 12
|
||||
.byte PAN , c_v+2
|
||||
.byte VOL , 38*bgm_frlg_girl_eye_mvl/mxv
|
||||
.byte W12
|
||||
.byte W72
|
||||
bgm_frlg_girl_eye_9_B1:
|
||||
.byte W48
|
||||
.byte N24 , Ds5 , v096
|
||||
.byte W48
|
||||
.byte W96
|
||||
.byte W48
|
||||
.byte N24
|
||||
.byte W48
|
||||
.byte W96
|
||||
.byte GOTO
|
||||
.word bgm_frlg_girl_eye_9_B1
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_girl_eye:
|
||||
.byte 9 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_girl_eye_pri @ Priority
|
||||
.byte bgm_frlg_girl_eye_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_girl_eye_grp
|
||||
|
||||
.word bgm_frlg_girl_eye_1
|
||||
.word bgm_frlg_girl_eye_2
|
||||
.word bgm_frlg_girl_eye_3
|
||||
.word bgm_frlg_girl_eye_4
|
||||
.word bgm_frlg_girl_eye_5
|
||||
.word bgm_frlg_girl_eye_6
|
||||
.word bgm_frlg_girl_eye_7
|
||||
.word bgm_frlg_girl_eye_8
|
||||
.word bgm_frlg_girl_eye_9
|
||||
|
||||
.end
|
||||
1884
sound/songs/bgm_frlg_gym.s
Normal file
1884
sound/songs/bgm_frlg_gym.s
Normal file
File diff suppressed because it is too large
Load Diff
1614
sound/songs/bgm_frlg_hall_of_fame_pallet_town.s
Normal file
1614
sound/songs/bgm_frlg_hall_of_fame_pallet_town.s
Normal file
File diff suppressed because it is too large
Load Diff
69
sound/songs/bgm_frlg_healing_test.s
Normal file
69
sound/songs/bgm_frlg_healing_test.s
Normal file
@ -0,0 +1,69 @@
|
||||
.include "MPlayDef.s"
|
||||
|
||||
.equ bgm_frlg_healing_test_grp, voicegroup_86A41D4
|
||||
.equ bgm_frlg_healing_test_pri, 0
|
||||
.equ bgm_frlg_healing_test_rev, reverb_set+50
|
||||
.equ bgm_frlg_healing_test_mvl, 127
|
||||
.equ bgm_frlg_healing_test_key, 0
|
||||
.equ bgm_frlg_healing_test_tbs, 1
|
||||
.equ bgm_frlg_healing_test_exg, 0
|
||||
.equ bgm_frlg_healing_test_cmp, 1
|
||||
|
||||
.section .rodata
|
||||
.global bgm_frlg_healing_test
|
||||
.align 2
|
||||
|
||||
@********************** Track 1 **********************@
|
||||
|
||||
bgm_frlg_healing_test_1:
|
||||
.byte VOL , 90*bgm_frlg_healing_test_mvl/mxv
|
||||
.byte KEYSH , bgm_frlg_healing_test_key+0
|
||||
.byte TEMPO , 146*bgm_frlg_healing_test_tbs/2
|
||||
.byte VOICE , 2
|
||||
.byte N24 , Bn4 , v064
|
||||
.byte W24
|
||||
.byte N24
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte Gs4
|
||||
.byte W12
|
||||
.byte N48 , En5
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@********************** Track 2 **********************@
|
||||
|
||||
bgm_frlg_healing_test_2:
|
||||
.byte VOL , 90*bgm_frlg_healing_test_mvl/mxv
|
||||
.byte KEYSH , bgm_frlg_healing_test_key+0
|
||||
.byte VOICE , 3
|
||||
.byte N12 , En2 , v092
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W24
|
||||
.byte N12
|
||||
.byte W12
|
||||
.byte Gs2
|
||||
.byte W12
|
||||
.byte N36 , En2
|
||||
.byte W24
|
||||
.byte W24
|
||||
.byte FINE
|
||||
|
||||
@******************************************************@
|
||||
.align 2
|
||||
|
||||
bgm_frlg_healing_test:
|
||||
.byte 2 @ NumTrks
|
||||
.byte 0 @ NumBlks
|
||||
.byte bgm_frlg_healing_test_pri @ Priority
|
||||
.byte bgm_frlg_healing_test_rev @ Reverb.
|
||||
|
||||
.word bgm_frlg_healing_test_grp
|
||||
|
||||
.word bgm_frlg_healing_test_1
|
||||
.word bgm_frlg_healing_test_2
|
||||
|
||||
.end
|
||||
2159
sound/songs/bgm_frlg_indigo_plateau.s
Normal file
2159
sound/songs/bgm_frlg_indigo_plateau.s
Normal file
File diff suppressed because it is too large
Load Diff
2887
sound/songs/bgm_frlg_island_four.s
Normal file
2887
sound/songs/bgm_frlg_island_four.s
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user