1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
.include "MPlayDef.s"
.equ se_m_encore_grp, voicegroup111
.equ se_m_encore_pri, 4
.equ se_m_encore_rev, reverb_set+50
.equ se_m_encore_mvl, 127
.equ se_m_encore_key, 0
.equ se_m_encore_tbs, 1
.equ se_m_encore_exg, 0
.equ se_m_encore_cmp, 1
.section .rodata
.global se_m_encore
.align 2
@********************** Track 1 **********************@
se_m_encore_1:
.byte KEYSH , se_m_encore_key+0
.byte TEMPO , 150*se_m_encore_tbs/2
.byte VOICE , 59
.byte BENDR , 12
.byte VOL , 110*se_m_encore_mvl/mxv
.byte PAN , c_v+0
.byte BEND , c_v+0
.byte N06 , En3 , v127
.byte W01
.byte PAN , c_v+8
.byte W01
.byte c_v-9
.byte W01
.byte c_v+14
.byte W01
.byte c_v-10
.byte W02
.byte c_v+0
.byte N03 , An3 , v048
.byte W01
.byte PAN , c_v+16
.byte W01
.byte c_v-16
.byte W04
.byte FINE
@******************************************************@
.align 2
se_m_encore:
.byte 1 @ NumTrks
.byte 0 @ NumBlks
.byte se_m_encore_pri @ Priority
.byte se_m_encore_rev @ Reverb.
.word se_m_encore_grp
.word se_m_encore_1
.end
|