Match se_moter.mid

This commit is contained in:
Kermalis 2018-11-20 15:02:24 -05:00
parent e7464b39a3
commit 68cb780ac3
4 changed files with 4 additions and 50 deletions

View File

@ -668,7 +668,7 @@ SECTIONS {
sound/songs/se_track_stop.o(.rodata); sound/songs/se_track_stop.o(.rodata);
sound/songs/se_track_haiki.o(.rodata); sound/songs/se_track_haiki.o(.rodata);
sound/songs/se_track_door.o(.rodata); sound/songs/se_track_door.o(.rodata);
sound/songs/se_moter.o(.rodata); sound/songs/midi/se_moter.o(.rodata);
sound/songs/midi/se_card.o(.rodata); sound/songs/midi/se_card.o(.rodata);
sound/songs/se_save.o(.rodata); sound/songs/se_save.o(.rodata);
sound/songs/midi/se_kon.o(.rodata); sound/songs/midi/se_kon.o(.rodata);

View File

@ -954,5 +954,8 @@ $(MID_SUBDIR)/se_kouka_m.s: %.s: %.mid
$(MID_SUBDIR)/se_mizu.s: %.s: %.mid $(MID_SUBDIR)/se_mizu.s: %.s: %.mid
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V20 -P4 $(MID) $< $@ -E -R$(STD_REVERB) -G128 -V20 -P4
$(MID_SUBDIR)/se_moter.s: %.s: %.mid
$(MID) $< $@ -E -R$(STD_REVERB) -G128 -V90 -P4
$(MID_SUBDIR)/se_z_search.s: %.s: %.mid $(MID_SUBDIR)/se_z_search.s: %.s: %.mid
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -P5 $(MID) $< $@ -E -R$(STD_REVERB) -G127 -P5

Binary file not shown.

View File

@ -1,49 +0,0 @@
.include "MPlayDef.s"
.equ se_moter_grp, voicegroup128
.equ se_moter_pri, 4
.equ se_moter_rev, reverb_set+50
.equ se_moter_mvl, 127
.equ se_moter_key, 0
.equ se_moter_tbs, 1
.equ se_moter_exg, 0
.equ se_moter_cmp, 1
.section .rodata
.global se_moter
.align 2
@********************** Track 1 **********************@
se_moter_1:
.byte KEYSH , se_moter_key+0
se_moter_1_B1:
.byte TEMPO , 150*se_moter_tbs/2
.byte VOICE , 15
.byte VOL , 90*se_moter_mvl/mxv
.byte PAN , c_v+0
.byte BEND , c_v+0
.byte TIE , Gn2 , v100
.byte W96
.byte W96
.byte W48
.byte EOT
.byte GOTO
.word se_moter_1_B1
.byte W48
.byte FINE
@******************************************************@
.align 2
se_moter:
.byte 1 @ NumTrks
.byte 0 @ NumBlks
.byte se_moter_pri @ Priority
.byte se_moter_rev @ Reverb.
.word se_moter_grp
.word se_moter_1
.end