summaryrefslogtreecommitdiff
path: root/music/championbattle.asm
blob: c1f8e3819a3070f4d2e28e788f139ccd14f556c9 (plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
_Music_ChampionBattle: ; 0xea9c1
	db $80
	dw _Music_ChampionBattle_Ch1
	db $01
	dw _Music_ChampionBattle_Ch2
	db $02
	dw _Music_ChampionBattle_Ch3
; 0xea9ca

_Music_ChampionBattle_Ch1: ; 0xea9ca
	tempo $6200
	volume $77
	dutycycle $03
	tone $0200
	vibrato $12, $15
	notetype $0c, $b2
	octave2
	note $b7
	note $b7
	note $b7
	note $b3
	intensity $b7
	note $c3
	callchannel _Music_ChampionBattle_sub_0xeaaee
	octave3
	note $43
	loopchannel $02, $69e2
	callchannel _Music_ChampionBattle_sub_0xeaaee
	octave3
	note $53
	callchannel _Music_ChampionBattle_sub_0xeaafc
	loopchannel $03, $69f0
	callchannel _Music_ChampionBattle_sub_0xeab06
	callchannel _Music_ChampionBattle_sub_0xeaafc
	loopchannel $07, $69fa
	callchannel _Music_ChampionBattle_sub_0xeab06
	intensity $b2
	note $b1
	note $b1
	intensity $b7
	octave3
	note $43
	intensity $b2
	octave2
	note $b1
	note $b1
	intensity $b7
	octave3
	note $53
	intensity $b2
	octave2
	note $b1
	note $b1
	intensity $b7
	octave3
	note $73
	intensity $b2
	octave2
	note $b1
	note $b1
	intensity $b7
	octave3
	note $93
	intensity $a0
	note $b7
	octave2
	note $b7
	octave3
	note $cb
	intensity $b2
	note $b0
	note $c0
	octave4
	note $10
	note $20
	callchannel _Music_ChampionBattle_sub_0xeab0f
	note $51
	note $51
	intensity $b7
	note $73
	intensity $b2
	note $51
	note $51
	intensity $b7
	note $93
	loopchannel $02, $6a3d
	intensity $b2
	note $51
	note $51
	intensity $b7
	note $c3
	callchannel _Music_ChampionBattle_sub_0xeab0f
	note $51
	note $51
	intensity $b7
	note $73
	intensity $b2
	note $51
	note $51
	intensity $b7
	note $93
	intensity $b2
	note $51
	note $51
	intensity $b7
	note $c3
	intensity $b2
	note $51
	note $51
	intensity $b7
	octave4
	note $53
	callchannel _Music_ChampionBattle_sub_0xeab24
	note $c3
	note $93
	callchannel _Music_ChampionBattle_sub_0xeab24
	octave4
	note $33
	note $33
	intensity $a0
	octave3
	note $b7
	octave2
	note $b7
	octave3
	note $77
	octave2
	note $77
	intensity $60
	note $cf
	intensity $70
	note $cf
	intensity $80
	octave3
	note $2f
	intensity $a0
	note $4f
	intensity $b4
	octave4
	note $73
	note $63
	note $53
	note $43
	note $33
	note $23
	note $73
	note $73
	note $73
	note $63
	note $53
	note $43
	note $71
	note $91
	note $41
	note $51
	note $73
	note $73
	note $0f
	intensity $90
	octave3
	note $77
	intensity $b4
	note $53
	note $53
	intensity $90
	note $4f
	note $2f
	intensity $b2
	octave2
	note $b1
	note $b1
	intensity $b7
	octave3
	note $43
	loopchannel $04, $6ab1
	intensity $b2
	note $11
	note $11
	intensity $b7
	note $43
	loopchannel $02, $6abe
	intensity $b2
	note $11
	note $11
	intensity $b7
	note $73
	intensity $b2
	note $11
	note $11
	intensity $b7
	note $93
	callchannel _Music_ChampionBattle_sub_0xeab31
	octave3
	note $41
	note $41
	intensity $b7
	note $c3
	callchannel _Music_ChampionBattle_sub_0xeab31
	octave3
	note $41
	note $41
	intensity $b7
	octave4
	note $33
	loopchannel $00, $6a35 ; end
; 0xeaaee

_Music_ChampionBattle_sub_0xeaaee: ; 0xeaaee
; subroutine
	intensity $b2
	octave2
	note $b1
	note $b5
	note $b1
	note $b5
	note $b1
	note $b5
	note $b1
	note $b1
	intensity $b7
	endchannel ; end
; 0xeaafc

_Music_ChampionBattle_sub_0xeaafc: ; 0xeaafc
; subroutine
	intensity $b2
	octave2
	note $b1
	note $b1
	intensity $b7
	octave3
	note $43
	endchannel ; end
; 0xeab06

_Music_ChampionBattle_sub_0xeab06: ; 0xeab06
; subroutine
	intensity $b2
	octave2
	note $b1
	note $b1
	intensity $b7
	note $c3
	endchannel ; end
; 0xeab0f

_Music_ChampionBattle_sub_0xeab0f: ; 0xeab0f
; subroutine
	intensity $b5
	octave3
	note $41
	note $b1
	note $41
	note $73
	note $61
	note $51
	note $c1
	note $71
	note $b1
	note $61
	note $a1
	note $51
	note $91
	note $41
	note $81
	intensity $b2
	endchannel ; end
; 0xeab24

_Music_ChampionBattle_sub_0xeab24: ; 0xeab24
; subroutine
	intensity $b2
	octave3
	note $b1
	note $b3
	note $b3
	note $b3
	note $b3
	note $b3
	note $b1
	intensity $b7
	endchannel ; end
; 0xeab31

_Music_ChampionBattle_sub_0xeab31: ; 0xeab31
; subroutine
	intensity $b2
	note $41
	note $41
	intensity $b7
	note $b3
	intensity $b2
	note $41
	note $41
	intensity $b7
	note $c3
	intensity $b2
	note $41
	note $41
	intensity $b7
	octave4
	note $23
	intensity $b2
	endchannel ; end
; 0xeab4a

_Music_ChampionBattle_Ch2: ; 0xeab4a
	dutycycle $03
	vibrato $08, $36
	tone $0100
	notetype $0c, $c2
	octave3
	note $47
	note $47
	note $47
	note $43
	intensity $c7
	note $33
	callchannel _Music_ChampionBattle_sub_0xeac4f
	note $b3
	callchannel _Music_ChampionBattle_sub_0xeac4f
	note $c3
	callchannel _Music_ChampionBattle_sub_0xeac4f
	octave4
	note $23
	callchannel _Music_ChampionBattle_sub_0xeac5c
	note $33
	callchannel _Music_ChampionBattle_sub_0xeac5c
	note $63
	callchannel _Music_ChampionBattle_sub_0xeac5c
	note $33
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $b3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $c3
	intensity $c2
	note $41
	note $41
	intensity $c7
	octave4
	note $13
	intensity $c2
	octave3
	note $41
	note $41
	intensity $c7
	octave4
	note $23
	note $47
	octave3
	note $47
	octave4
	note $57
	intensity $3c
	note $57
	intensity $c5
	note $45
	octave3
	note $b5
	octave4
	note $41
	note $31
	note $23
	note $13
	octave3
	note $c3
	note $b3
	intensity $c7
	note $c7
	octave4
	note $57
	intensity $c2
	octave3
	note $91
	note $91
	intensity $c7
	note $c3
	intensity $c2
	note $91
	note $91
	intensity $c7
	octave4
	note $23
	intensity $c5
	note $45
	octave3
	note $b5
	octave4
	note $41
	note $31
	note $23
	note $13
	octave3
	note $c3
	note $b1
	note $c1
	intensity $c7
	octave4
	note $57
	note $97
	note $57
	note $c7
	callchannel _Music_ChampionBattle_sub_0xeac79
	note $53
	note $53
	callchannel _Music_ChampionBattle_sub_0xeac79
	note $73
	note $73
	intensity $c7
	note $47
	octave3
	note $47
	octave4
	note $27
	octave3
	note $27
	intensity $b0
	note $4f
	note $4f
	note $6f
	note $7f
	intensity $c4
	octave5
	note $43
	note $33
	note $23
	note $13
	note $41
	note $31
	note $21
	note $11
	octave4
	note $c3
	note $c3
	loopchannel $02, $6bef
	intensity $b0
	octave3
	note $4f
	note $cf
	note $bf
	note $9f
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $b3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $c3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $b3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $a3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $b3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $c3
	intensity $c2
	note $41
	note $41
	intensity $c7
	octave4
	note $23
	intensity $c2
	octave3
	note $41
	note $41
	intensity $c7
	octave4
	note $33
	intensity $b0
	note $47
	note $57
	note $77
	note $57
	note $47
	note $57
	note $77
	note $97
	loopchannel $00, $6b9d ; end
; 0xeac4f

_Music_ChampionBattle_sub_0xeac4f: ; 0xeac4f
; subroutine
	intensity $c2
	note $41
	note $45
	note $41
	note $45
	note $41
	note $45
	note $41
	note $41
	intensity $c7
	endchannel ; end
; 0xeac5c

_Music_ChampionBattle_sub_0xeac5c: ; 0xeac5c
; subroutine
	intensity $c2
	octave3
	note $41
	note $41
	intensity $c7
	note $b3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $c3
	intensity $c2
	note $41
	note $41
	intensity $c7
	note $b3
	intensity $c2
	note $41
	note $41
	intensity $c7
	endchannel ; end
; 0xeac79

_Music_ChampionBattle_sub_0xeac79: ; 0xeac79
; subroutine
	intensity $c1
	note $41
	note $43
	note $43
	note $43
	note $43
	note $43
	note $41
	intensity $c5
	endchannel ; end
; 0xeac85

_Music_ChampionBattle_Ch3: ; 0xeac85
	notetype $0c, $14
	octave3
	note $40
	note $06
	loopchannel $03, $6c88
	note $40
	note $02
	note $53
	callchannel _Music_ChampionBattle_sub_0xead61
	callchannel _Music_ChampionBattle_sub_0xead61
	callchannel _Music_ChampionBattle_sub_0xead61
	callchannel _Music_ChampionBattle_sub_0xead6f
	note $33
	callchannel _Music_ChampionBattle_sub_0xead6f
	note $a3
	callchannel _Music_ChampionBattle_sub_0xead6f
	note $33
	note $40
	note $00
	note $40
	note $00
	note $b3
	note $40
	note $00
	note $40
	note $00
	note $b3
	note $40
	note $00
	note $40
	note $00
	note $c3
	note $40
	note $00
	note $40
	note $00
	octave4
	note $23
	note $47
	octave3
	note $47
	note $c3
	note $81
	note $c1
	note $71
	note $b1
	note $61
	note $a1
	note $41
	note $b1
	loopchannel $08, $6cc6
	note $51
	note $c1
	loopchannel $05, $6ccc
	note $51
	octave4
	note $11
	octave3
	note $a1
	note $c1
	note $81
	note $a1
	note $41
	note $b1
	loopchannel $08, $6cda
	note $51
	note $c1
	loopchannel $08, $6ce0
	callchannel _Music_ChampionBattle_sub_0xead83
	octave3
	note $41
	note $51
	note $41
	note $51
	note $41
	octave4
	note $31
	note $21
	note $11
	callchannel _Music_ChampionBattle_sub_0xead83
	octave3
	note $41
	note $b1
	note $41
	note $b1
	note $41
	octave4
	note $31
	note $21
	note $11
	octave3
	note $b7
	note $47
	note $c7
	note $47
	note $41
	note $71
	loopchannel $10, $6d05
	callchannel _Music_ChampionBattle_sub_0xead8e
	octave3
	note $51
	note $c1
	octave4
	note $41
	note $51
	note $71
	octave3
	note $c1
	octave4
	note $41
	note $51
	callchannel _Music_ChampionBattle_sub_0xead8e
	octave3
	note $51
	note $c1
	loopchannel $04, $6d1d
	note $41
	note $b1
	loopchannel $05, $6d24
	note $c1
	octave4
	note $41
	octave3
	note $41
	note $01
	note $41
	note $01
	note $51
	note $c1
	loopchannel $05, $6d32
	octave4
	note $21
	note $51
	octave3
	note $51
	note $01
	note $51
	note $01
	note $41
	note $91
	loopchannel $08, $6d40
	note $41
	note $b1
	loopchannel $07, $6d46
	note $c1
	note $b1
	octave3
	note $41
	note $b1
	octave4
	note $31
	note $41
	loopchannel $07, $6d4e
	note $21
	octave3
	note $c1
	note $b1
	note $91
	loopchannel $00, $6cc6 ; end
; 0xead61

_Music_ChampionBattle_sub_0xead61: ; 0xead61
; subroutine
	note $40
	note $00
	note $40
	note $04
	loopchannel $03, $6d61
	note $40
	note $00
	note $40
	note $00
	note $c3
	endchannel ; end
; 0xead6f

_Music_ChampionBattle_sub_0xead6f: ; 0xead6f
; subroutine
	note $40
	note $00
	note $40
	note $00
	note $b3
	note $40
	note $00
	note $40
	note $00
	note $c3
	note $40
	note $00
	note $40
	note $00
	note $b3
	note $40
	note $00
	note $40
	note $00
	endchannel ; end
; 0xead83

_Music_ChampionBattle_sub_0xead83: ; 0xead83
; subroutine
	octave3
	note $41
	note $71
	note $41
	note $71
	note $41
	octave4
	note $31
	note $21
	note $11
	endchannel ; end
; 0xead8e

_Music_ChampionBattle_sub_0xead8e: ; 0xead8e
; subroutine
	octave3
	note $51
	note $c1
	note $51
	note $c1
	note $51
	note $c1
	octave4
	note $41
	note $51
	endchannel ; end
; 0xead99