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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
.include "MPlayDef.s"
.equ se_super_effective_grp, voicegroup110
.equ se_super_effective_pri, 5
.equ se_super_effective_rev, reverb_set+50
.equ se_super_effective_mvl, 127
.equ se_super_effective_key, 0
.equ se_super_effective_tbs, 1
.equ se_super_effective_exg, 0
.equ se_super_effective_cmp, 1
.section .rodata
.global se_super_effective
.align 2
@********************** Track 1 **********************@
se_super_effective_1:
.byte KEYSH , se_super_effective_key+0
.byte TEMPO , 90*se_super_effective_tbs/2
.byte VOICE , 125
.byte VOL , 110*se_super_effective_mvl/mxv
.byte N03 , Cn3 , v100
.byte W03
.byte An2
.byte W03
.byte Cn3
.byte W03
.byte N06 , Gn3 , v072
.byte W03
.byte W03
.byte N03 , Cn3 , v052
.byte W03
.byte N06 , Gn3 , v048
.byte W03
.byte W03
.byte N03 , Cn3 , v028
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte N03 , Cn3
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte N03 , Cn3 , v012
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte FINE
@********************** Track 2 **********************@
se_super_effective_2:
.byte KEYSH , se_super_effective_key+0
.byte VOICE , 0
.byte VOL , 110*se_super_effective_mvl/mxv
.byte N03 , Cn4 , v127
.byte W03
.byte Cn3
.byte W03
.byte Cn4
.byte W03
.byte N06 , Gn3 , v088
.byte W03
.byte W03
.byte N03 , Cn3 , v064
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte N03 , Cn3 , v044
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte N03 , Cn3 , v028
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte N03 , Cn3 , v012
.byte W03
.byte N06 , Gn3
.byte W03
.byte W03
.byte FINE
@******************************************************@
.align 2
se_super_effective:
.byte 2 @ NumTrks
.byte 0 @ NumBlks
.byte se_super_effective_pri @ Priority
.byte se_super_effective_rev @ Reverb.
.word se_super_effective_grp
.word se_super_effective_1
.word se_super_effective_2
.end
|