Match se_door.mid

This commit is contained in:
Kermalis 2018-10-10 15:26:20 -04:00
parent 615ad808bf
commit 264bd34bdd
4 changed files with 4 additions and 43 deletions

View File

@ -572,7 +572,7 @@ SECTIONS {
sound/songs/se_select.o(.rodata); sound/songs/se_select.o(.rodata);
sound/songs/se_win_open.o(.rodata); sound/songs/se_win_open.o(.rodata);
sound/songs/se_wall_hit.o(.rodata); sound/songs/se_wall_hit.o(.rodata);
sound/songs/se_door.o(.rodata); sound/songs/midi/se_door.o(.rodata);
sound/songs/se_kaidan.o(.rodata); sound/songs/se_kaidan.o(.rodata);
sound/songs/midi/se_dansa.o(.rodata); sound/songs/midi/se_dansa.o(.rodata);
sound/songs/se_jitensya.o(.rodata); sound/songs/se_jitensya.o(.rodata);

View File

@ -849,5 +849,8 @@ $(MID_SUBDIR)/se_dendou.s: %.s: %.mid
$(MID_SUBDIR)/se_doku.s: %.s: %.mid $(MID_SUBDIR)/se_doku.s: %.s: %.mid
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5 $(MID) $< $@ -E -R$(STD_REVERB) -G127 -V110 -P5
$(MID_SUBDIR)/se_door.s: %.s: %.mid
$(MID) $< $@ -E -R$(STD_REVERB) -G127 -V080 -P5
$(MID_SUBDIR)/se_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,42 +0,0 @@
.include "MPlayDef.s"
.equ se_door_grp, voicegroup127
.equ se_door_pri, 5
.equ se_door_rev, reverb_set+50
.equ se_door_mvl, 127
.equ se_door_key, 0
.equ se_door_tbs, 1
.equ se_door_exg, 0
.equ se_door_cmp, 1
.section .rodata
.global se_door
.align 2
@********************** Track 1 **********************@
se_door_1:
.byte KEYSH , se_door_key+0
.byte TEMPO , 110*se_door_tbs/2
.byte VOICE , 127
.byte VOL , 80*se_door_mvl/mxv
.byte N03 , Dn3 , v127
.byte W06
.byte N12 , Fs3
.byte W18
.byte FINE
@******************************************************@
.align 2
se_door:
.byte 1 @ NumTrks
.byte 0 @ NumBlks
.byte se_door_pri @ Priority
.byte se_door_rev @ Reverb.
.word se_door_grp
.word se_door_1
.end