-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnyancat_music_rasm.asm
870 lines (666 loc) · 17.4 KB
/
nyancat_music_rasm.asm
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
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
; Nyan Cat, AKG format, v1.0.
; Generated by Arkos Tracker 2.
_nyancat_music_Start
_nyancat_music_StartDisarkGenerateExternalLabel
_nyancat_music_DisarkByteRegionStart0
db "AT20"
_nyancat_music_DisarkPointerRegionStart1
dw _nyancat_music_ArpeggioTable ; The address of the Arpeggio table.
dw _nyancat_music_PitchTable ; The address of the Pitch table.
dw _nyancat_music_InstrumentTable ; The address of the Instrument table.
dw _nyancat_music_EffectBlockTable ; The address of the Effect Block table.
_nyancat_music_DisarkPointerRegionEnd1
; The addresses of each Subsong:
_nyancat_music_DisarkPointerRegionStart2
dw _nyancat_music_Subsong0_Start
_nyancat_music_DisarkPointerRegionEnd2
; Declares all the Arpeggios.
_nyancat_music_ArpeggioTable
_nyancat_music_DisarkPointerRegionStart3
_nyancat_music_DisarkPointerRegionEnd3
; Declares all the Pitches.
_nyancat_music_PitchTable
_nyancat_music_DisarkPointerRegionStart4
_nyancat_music_DisarkPointerRegionEnd4
; Declares all the Instruments.
_nyancat_music_InstrumentTable
_nyancat_music_DisarkPointerRegionStart5
dw _nyancat_music_EmptyInstrument
dw _nyancat_music_Instrument1
dw _nyancat_music_Instrument2
dw _nyancat_music_Instrument3
dw _nyancat_music_Instrument4
dw _nyancat_music_Instrument5
_nyancat_music_DisarkPointerRegionEnd5
_nyancat_music_EmptyInstrument
db 0 ; The speed (>0, 0 for 256).
_nyancat_music_EmptyInstrument_Loop db 0 ; No Soft no Hard. Volume: 0. Noise? false.
db 6 ; Loop to silence.
_nyancat_music_Instrument1
db 1 ; The speed (>0, 0 for 256).
db 241 ; Soft only. Volume: 14. Volume only.
db 121 ; Soft only. Volume: 15.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 105 ; Soft only. Volume: 13.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 97 ; Soft only. Volume: 12.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 89 ; Soft only. Volume: 11.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 81 ; Soft only. Volume: 10.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 73 ; Soft only. Volume: 9.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 65 ; Soft only. Volume: 8.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 57 ; Soft only. Volume: 7.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 49 ; Soft only. Volume: 6.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 41 ; Soft only. Volume: 5.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 33 ; Soft only. Volume: 4.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 25 ; Soft only. Volume: 3.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 17 ; Soft only. Volume: 2.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw 1 ; Pitch.
db 9 ; Soft only. Volume: 1.
db 32 ; Additional data. Noise: 0. Pitch? true. Arp? false. Period? false.
dw -1 ; Pitch.
db 6 ; Loop to silence.
_nyancat_music_Instrument2
db 1 ; The speed (>0, 0 for 256).
_nyancat_music_Instrument2_Loop db 34 ; Soft to Hard. Envelope: 10. Retrig ? false. Noise ? false.
db 131 ; Simple case. Ratio: 4
db 7 ; Loop.
_nyancat_music_DisarkWordForceReference6
dw _nyancat_music_Instrument2_Loop ; Loop here.
_nyancat_music_Instrument3
db 1 ; The speed (>0, 0 for 256).
db 121 ; Soft only. Volume: 15.
db 1 ; Additional data. Noise: 1. Pitch? false. Arp? false. Period? false.
db 121 ; Soft only. Volume: 15.
db 64 ; Additional data. Noise: 0. Pitch? false. Arp? true. Period? false.
db 4 ; Arpeggio.
db 249 ; Soft only. Volume: 15. Volume only.
db 113 ; Soft only. Volume: 14.
db 64 ; Additional data. Noise: 0. Pitch? false. Arp? true. Period? false.
db -4 ; Arpeggio.
db 113 ; Soft only. Volume: 14.
db 64 ; Additional data. Noise: 0. Pitch? false. Arp? true. Period? false.
db -8 ; Arpeggio.
db 105 ; Soft only. Volume: 13.
db 64 ; Additional data. Noise: 0. Pitch? false. Arp? true. Period? false.
db -8 ; Arpeggio.
db 97 ; Soft only. Volume: 12.
db 64 ; Additional data. Noise: 0. Pitch? false. Arp? true. Period? false.
db -12 ; Arpeggio.
db 6 ; Loop to silence.
_nyancat_music_Instrument4
db 1 ; The speed (>0, 0 for 256).
db 121 ; Soft only. Volume: 15.
db 128 ; Additional data. Noise: 0. Pitch? false. Arp? false. Period? true.
dw 3549 ; Forced period.
db 241 ; Soft only. Volume: 14. Volume only.
db 232 ; No Soft no Hard. Volume: 13. Noise? true.
db 10 ; Noise: 10.
db 192 ; No Soft no Hard. Volume: 8. Noise? true.
db 10 ; Noise: 10.
db 184 ; No Soft no Hard. Volume: 7. Noise? true.
db 10 ; Noise: 10.
db 168 ; No Soft no Hard. Volume: 5. Noise? true.
db 10 ; Noise: 10.
db 152 ; No Soft no Hard. Volume: 3. Noise? true.
db 10 ; Noise: 10.
db 144 ; No Soft no Hard. Volume: 2. Noise? true.
db 7 ; Noise: 7.
db 144 ; No Soft no Hard. Volume: 2. Noise? true.
db 4 ; Noise: 4.
db 136 ; No Soft no Hard. Volume: 1. Noise? true.
db 2 ; Noise: 2.
db 136 ; No Soft no Hard. Volume: 1. Noise? true.
db 1 ; Noise: 1.
db 0 ; No Soft no Hard. Volume: 0. Noise? false.
db 0 ; No Soft no Hard. Volume: 0. Noise? false.
db 0 ; No Soft no Hard. Volume: 0. Noise? false.
db 6 ; Loop to silence.
_nyancat_music_Instrument5
db 1 ; The speed (>0, 0 for 256).
db 248 ; No Soft no Hard. Volume: 15. Noise? true.
db 1 ; Noise: 1.
db 232 ; No Soft no Hard. Volume: 13. Noise? true.
db 1 ; Noise: 1.
db 216 ; No Soft no Hard. Volume: 11. Noise? true.
db 1 ; Noise: 1.
db 192 ; No Soft no Hard. Volume: 8. Noise? true.
db 1 ; Noise: 1.
db 168 ; No Soft no Hard. Volume: 5. Noise? true.
db 1 ; Noise: 1.
db 6 ; Loop to silence.
; The indexes of the effect blocks used by this song.
_nyancat_music_EffectBlockTable
_nyancat_music_DisarkByteRegionEnd0
; Subsong 0
; ----------------------
_nyancat_music_Subsong0_DisarkByteRegionStart0
_nyancat_music_Subsong0_Start
db 2 ; ReplayFrequency (0=12.5hz, 1=25, 2=50, 3=100, 4=150, 5=300).
db 0 ; Digichannel (0-2).
db 1 ; PSG count (>0).
db 2 ; Loop start index (>=0).
db 17 ; End index (>=0).
db 6 ; Initial speed (>=0).
db 21 ; Base note index (>=0).
_nyancat_music_Subsong0_Linker
_nyancat_music_Subsong0_DisarkPointerRegionStart1
; Position 0
dw _nyancat_music_Subsong0_Track0
dw _nyancat_music_Subsong0_Track1
dw _nyancat_music_Subsong0_Track2
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 1
dw _nyancat_music_Subsong0_Track3
dw _nyancat_music_Subsong0_Track1
dw _nyancat_music_Subsong0_Track4
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 2
_nyancat_music_Subsong0_Linker_Loop
dw _nyancat_music_Subsong0_Track5
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track7
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 3
dw _nyancat_music_Subsong0_Track8
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 4
dw _nyancat_music_Subsong0_Track11
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track7
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 5
dw _nyancat_music_Subsong0_Track12
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track20
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 6
dw _nyancat_music_Subsong0_Track5
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track7
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 7
dw _nyancat_music_Subsong0_Track8
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 8
dw _nyancat_music_Subsong0_Track11
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track7
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 9
dw _nyancat_music_Subsong0_Track13
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track19
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 10
dw _nyancat_music_Subsong0_Track14
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 11
dw _nyancat_music_Subsong0_Track15
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 12
dw _nyancat_music_Subsong0_Track16
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 13
dw _nyancat_music_Subsong0_Track17
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track20
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 14
dw _nyancat_music_Subsong0_Track14
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 15
dw _nyancat_music_Subsong0_Track15
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 16
dw _nyancat_music_Subsong0_Track16
dw _nyancat_music_Subsong0_Track6
dw _nyancat_music_Subsong0_Track10
dw _nyancat_music_Subsong0_LinkerBlock0
; Position 17
dw _nyancat_music_Subsong0_Track18
dw _nyancat_music_Subsong0_Track9
dw _nyancat_music_Subsong0_Track19
dw _nyancat_music_Subsong0_LinkerBlock0
_nyancat_music_Subsong0_DisarkPointerRegionEnd1
dw 0 ; Loop.
_nyancat_music_Subsong0_DisarkWordForceReference2
dw _nyancat_music_Subsong0_Linker_Loop
_nyancat_music_Subsong0_LinkerBlock0
db 16 ; Height.
db 0 ; Transposition 0.
db 0 ; Transposition 1.
db 0 ; Transposition 2.
_nyancat_music_Subsong0_DisarkWordForceReference3
dw _nyancat_music_Subsong0_SpeedTrack0 ; SpeedTrack address.
_nyancat_music_Subsong0_DisarkWordForceReference4
dw _nyancat_music_Subsong0_EventTrack0 ; EventTrack address.
_nyancat_music_Subsong0_Track0
db 170
db 1 ; New Instrument (1).
db 43
db 45
db 60 ; Waits for 1 line.
db 50
db 60 ; Waits for 1 line.
db 42
db 43
db 45
db 50
db 54
db 55
db 54
db 49
db 50
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track1
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track2
db 156
db 4 ; New Instrument (4).
db 62 + 1 * 64 ; Optimized wait for 3 lines.
db 28
db 62 + 1 * 64 ; Optimized wait for 3 lines.
db 131
db 3 ; New Instrument (3).
db 62 + 1 * 64 ; Optimized wait for 3 lines.
db 156
db 4 ; New Instrument (4).
db 131
db 3 ; New Instrument (3).
db 3
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track3
db 173
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 42
db 43
db 45
db 60 ; Waits for 1 line.
db 50
db 60 ; Waits for 1 line.
db 52
db 49
db 50
db 52
db 55
db 54
db 55
db 54
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track4
db 131
db 3 ; New Instrument (3).
db 62 + 1 * 64 ; Optimized wait for 3 lines.
db 156
db 4 ; New Instrument (4).
db 62 + 1 * 64 ; Optimized wait for 3 lines.
db 28
db 62 + 1 * 64 ; Optimized wait for 3 lines.
db 28
db 60 ; Waits for 1 line.
db 28
db 28
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track5
db 173
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 47
db 60 ; Waits for 1 line.
db 40
db 42
db 60 ; Waits for 1 line.
db 40
db 41
db 40
db 38
db 60 ; Waits for 1 line.
db 38
db 60 ; Waits for 1 line.
db 40
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track6
db 135
db 2 ; New Instrument (2).
db 60 ; Waits for 1 line.
db 19
db 60 ; Waits for 1 line.
db 9
db 60 ; Waits for 1 line.
db 21
db 60 ; Waits for 1 line.
db 6
db 60 ; Waits for 1 line.
db 18
db 60 ; Waits for 1 line.
db 11
db 60 ; Waits for 1 line.
db 23
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track7
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track8
db 169
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 41
db 40
db 38
db 40
db 42
db 45
db 47
db 42
db 45
db 40
db 42
db 38
db 40
db 38
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track9
db 132
db 2 ; New Instrument (2).
db 60 ; Waits for 1 line.
db 16
db 60 ; Waits for 1 line.
db 9
db 60 ; Waits for 1 line.
db 21
db 60 ; Waits for 1 line.
db 2
db 60 ; Waits for 1 line.
db 14
db 60 ; Waits for 1 line.
db 4
db 60 ; Waits for 1 line.
db 16
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track10
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 3
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track11
db 170
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 45
db 60 ; Waits for 1 line.
db 47
db 42
db 45
db 40
db 42
db 38
db 40
db 42
db 41
db 40
db 38
db 40
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track12
db 169
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 38
db 40
db 42
db 45
db 40
db 41
db 40
db 38
db 40
db 60 ; Waits for 1 line.
db 38
db 60 ; Waits for 1 line.
db 40
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track13
db 169
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 38
db 40
db 42
db 45
db 40
db 41
db 40
db 38
db 40
db 60 ; Waits for 1 line.
db 38
db 60 ; Waits for 1 line.
db 38
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track14
db 166
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 33
db 35
db 38
db 60 ; Waits for 1 line.
db 33
db 35
db 38
db 40
db 42
db 38
db 43
db 42
db 43
db 45
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track15
db 166
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 38
db 60 ; Waits for 1 line.
db 33
db 35
db 38
db 35
db 43
db 42
db 40
db 38
db 31
db 30
db 31
db 33
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track16
db 166
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 33
db 35
db 38
db 60 ; Waits for 1 line.
db 33
db 35
db 38
db 38
db 40
db 42
db 38
db 33
db 35
db 33
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track17
db 166
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 38
db 37
db 38
db 33
db 35
db 38
db 43
db 42
db 43
db 45
db 38
db 60 ; Waits for 1 line.
db 37
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track18
db 166
db 1 ; New Instrument (1).
db 60 ; Waits for 1 line.
db 38
db 37
db 38
db 33
db 35
db 38
db 43
db 42
db 43
db 45
db 38
db 60 ; Waits for 1 line.
db 40
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track19
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 3
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 28
db 61, 127 ; Waits for 128 lines.
_nyancat_music_Subsong0_Track20
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 179
db 5 ; New Instrument (5).
db 60 ; Waits for 1 line.
db 131
db 3 ; New Instrument (3).
db 60 ; Waits for 1 line.
db 3
db 60 ; Waits for 1 line.
db 156
db 4 ; New Instrument (4).
db 60 ; Waits for 1 line.
db 28
db 28
db 61, 127 ; Waits for 128 lines.
; The speed tracks
_nyancat_music_Subsong0_SpeedTrack0
db 10 ; Value: 5.
db 253 ; Wait for 127 lines.
; The event tracks
_nyancat_music_Subsong0_EventTrack0
db 255 ; Wait for 128 lines.
_nyancat_music_Subsong0_DisarkByteRegionEnd0