-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsongs.asm
executable file
·3047 lines (2923 loc) · 43.9 KB
/
songs.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
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.include "notes.inc"
.include "songs.inc"
.segment "PRG_0"
; Over 3kB of wasted space? Why?
.repeat $D60
.byte $FF
.endrepeat
;8D60
songTable:
.export songTable
.byte songDescriptor0 - songTable
.byte songDescriptor1 - songTable
.byte songDescriptor2 - songTable
.byte songDescriptor3 - songTable
.byte songDescriptor4 - songTable
.byte songDescriptor5 - songTable
.byte songDescriptor6 - songTable
.byte songDescriptor7 - songTable
.byte songDescriptor8 - songTable
.byte songDescriptor9 - songTable
.byte songDescriptor10 - songTable
.byte songDescriptor11 - songTable
.byte songDescriptor12 - songTable
.byte songDescriptor13 - songTable
.byte songDescriptor14 - songTable
.byte songDescriptor15 - songTable
.byte songDescriptor16 - songTable
.byte songDescriptor17 - songTable
.byte songDescriptor18 - songTable
.byte songDescriptor19 - songTable
.byte songDescriptor20 - songTable
.byte songDescriptor21 - songTable
.byte songDescriptor22 - songTable
.byte songDescriptor23 - songTable
.byte songDescriptor24 - songTable
.byte songDescriptor25 - songTable
.byte songDescriptor26 - songTable
.byte songDescriptor27 - songTable
.byte songDescriptor28 - songTable
.byte songDescriptor29 - songTable
.byte songDescriptor30 - songTable
.byte songDescriptor31 - songTable
.byte songDescriptor32 - songTable
.byte songDescriptor33 - songTable
.byte songDescriptor34 - songTable
.byte songDescriptor35 - songTable
;Title theme
songDescriptor25:
.byte $20
.addr song25voiceA
.byte song25voiceC - song25voiceA
.byte song25voiceB - song25voiceA
.byte song25voiceD - song25voiceA
.byte $80
.byte $01
songDescriptor26:
.byte $20
.addr song26voiceA
.byte song26voiceC - song26voiceA
.byte song26voiceB - song26voiceA
.byte song26voiceD - song26voiceA
.byte $01
.byte $80
songDescriptor27:
songDescriptor30:
.byte $20
.addr song27voiceA
.byte song27voiceC - song27voiceA
.byte song27voiceB - song27voiceA
.byte song27voiceD - song27voiceA
.byte $80
.byte $80
songDescriptor28:
.byte $20
.addr song28voiceA
.byte song28voiceC - song28voiceA
.byte song28voiceB - song28voiceA
.byte song28voiceD - song28voiceA
.byte $80
.byte $80
songDescriptor29:
songDescriptor34:
.byte $20
.addr song29voiceA
.byte song29voiceC - song29voiceA
.byte song29voiceB - song29voiceA
.byte song29voiceD - song29voiceA
.byte $80
.byte $80
songDescriptor31:
.byte $20
.addr song31voiceA
.byte song31voiceC - song31voiceA
.byte song31voiceB - song31voiceA
.byte song31voiceD - song31voiceA
.byte $80
.byte $80
songDescriptor32:
.byte $20
.addr song32voiceA
.byte song32voiceC - song32voiceA
.byte song32voiceB - song32voiceA
.byte song32voiceD - song32voiceA
.byte $80
.byte $80
songDescriptor33:
.byte $20
.addr song33voiceA
.byte song33voiceC - song33voiceA
.byte song33voiceB - song33voiceA
.byte song33voiceD - song33voiceA
.byte $80
.byte $80
songDescriptor6:
songDescriptor7:
.byte $10
.addr song6voiceA
songDescriptor3:
.byte $10
.addr song3voiceA
.byte song3voiceC - song3voiceA
.byte song3voiceB - song3voiceA
.byte song3voiceD - song3voiceA
.byte $80
;Triforce receiving theme
songDescriptor2:
.byte $10
.addr song2voiceA
.byte song2voiceC - song2voiceA
.byte song2voiceB - song2voiceA
.byte song2voiceD - song2voiceA
.byte $80
;Main overworld theme - Intro
songDescriptor8:
.byte $10
.addr song8voiceA
.byte song8voiceC - song8voiceA
.byte song8voiceB - song8voiceA
.byte song8voiceD - song8voiceA
.byte $01
.byte $80
;Main overworld theme - 1st 8 beats
songDescriptor0:
songDescriptor4:
songDescriptor9:
songDescriptor12:
.byte $10
.addr song0voiceA
.byte song0voiceC - song0voiceA
.byte song0voiceB - song0voiceA
.byte song0voiceD - song0voiceA
.byte $01
.byte $80
songDescriptor10:
.byte $10
.addr song10voiceA
.byte song10voiceC - song10voiceA
.byte song10voiceB - song10voiceA
.byte song10voiceD - song10voiceA
.byte $01
.byte $80
songDescriptor13:
.byte $10
.addr song13voiceA
.byte song13voiceC - song13voiceA
.byte song13voiceB - song13voiceA
.byte song13voiceD - song13voiceA
.byte $01
.byte $80
songDescriptor11:
songDescriptor14:
.byte $10
.addr song11voiceA
.byte song11voiceC - song11voiceA
.byte song11voiceB - song11voiceA
.byte song11voiceD - song11voiceA
.byte $01
.byte $80
songDescriptor15:
.byte $00
.addr song15voiceA
.byte song15voiceC - song15voiceA
.byte song15voiceB - song15voiceA
.byte song15voiceD - song15voiceA
.byte $01
.byte $01
songDescriptor16:
.byte $00
.addr song16voiceA
.byte song16voiceC - song16voiceA
.byte song16voiceB - song16voiceA
.byte song16voiceD - song16voiceA
.byte $01
.byte $01
songDescriptor5:
.byte $10
.addr song5voiceA
.byte song5voiceC - song5voiceA
.byte song5voiceB - song5voiceA
.byte song5voiceD - song5voiceA
.byte $80
.byte $80
songDescriptor1:
.byte $10
.addr song1voiceA
.byte song1voiceC - song1voiceA
.byte song1voiceB - song1voiceA
.byte song1voiceD - song1voiceA
.byte $80
.byte $01
;Death screen music
songDescriptor17:
.byte $08
.addr song17voiceA
.byte song17voiceC - song17voiceA
.byte song17voiceB - song17voiceA
.byte song17voiceD - song17voiceA
.byte $01
.byte $80
songDescriptor18:
.byte $08
.addr song18voiceA
.byte song18voiceC - song18voiceA
.byte song18voiceB - song18voiceA
.byte song18voiceD - song18voiceA
.byte $01
.byte $80
songDescriptor19:
.byte $08
.addr song19voiceA
.byte song19voiceC - song19voiceA
.byte song19voiceB - song19voiceA
.byte song19voiceD - song19voiceA
.byte $80
.byte $80
songDescriptor20:
songDescriptor22:
.byte $08
.addr song20voiceA
.byte song20voiceC - song20voiceA
.byte song20voiceB - song20voiceA
.byte song20voiceD - song20voiceA
.byte $01
.byte $80
songDescriptor21:
.byte $08
.addr song21voiceA
.byte song21voiceC - song21voiceA
.byte song21voiceB - song21voiceA
.byte song21voiceD - song21voiceA
.byte $01
.byte $80
songDescriptor23:
.byte $08
.addr song23voiceA
.byte song23voiceC - song23voiceA
.byte song23voiceB - song23voiceA
.byte song23voiceD - song23voiceA
.byte $01
.byte $80
songDescriptor24:
.byte $08
.addr song24voiceA
.byte song24voiceC - song24voiceA
.byte song24voiceB - song24voiceA
.byte song24voiceD - song24voiceA
.byte $80
.byte $80
songDescriptor35:
.byte $10
.addr song35voiceA
.byte song35voiceC - song35voiceA
.byte song35voiceB - song35voiceA
.byte song35voiceD - song35voiceA
.byte $80
.byte $80
song3voiceA:
song3voiceD:
.byte EIGHTH_NOTE
.byte C_4
.byte Db_4
.byte D_4
.byte HALF_NOTE
.byte Eb_4
.byte SONG_END
song3voiceB:
.byte EIGHTH_NOTE
.byte A_4
.byte Bb_4
.byte B_4
.byte HALF_NOTE
.byte C_5
song3voiceC:
.byte EIGHTH_NOTE
.byte F_4
.byte Gb_4
.byte G_4
.byte HALF_NOTE
.byte Ab_4
song8voiceA:
.byte HALF_NOTE
.byte Bb_4
.byte EIGHTH_TRIPLET
.byte REST
.byte REST
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte REST
.byte Ab_4
.byte QUARTER_NOTE
.byte Bb_4
.byte EIGHTH_TRIPLET
.byte REST
.byte REST
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte REST
.byte Ab_4
.byte QUARTER_NOTE
.byte Bb_4
.byte EIGHTH_TRIPLET
.byte REST
.byte REST
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte Bb_4
.byte SIXTEENTH_NOTE
.byte Bb_4
.byte REST
.byte F_4
.byte F_4
.byte F_4
.byte REST
.byte F_4
.byte F_4
.byte F_4
.byte REST
.byte F_4
.byte F_4
.byte EIGHTH_NOTE
.byte F_4
.byte F_4
song6voiceA:
.byte SONG_END
song8voiceC:
.byte QUARTER_NOTE
.byte Bb_3
.byte EIGHTH_TRIPLET
.byte Bb_3
.byte Bb_3
.byte Bb_3
.byte QUARTER_NOTE
.byte Bb_3
.byte EIGHTH_TRIPLET
.byte Bb_3
.byte Bb_3
.byte Bb_3
.byte QUARTER_NOTE
.byte Ab_3
.byte EIGHTH_TRIPLET
song6voiceC:
song7voiceC:
.byte Ab_3
.byte Ab_3
.byte Ab_3
.byte QUARTER_NOTE
.byte Ab_3
.byte EIGHTH_TRIPLET
.byte Ab_3
.byte Ab_3
.byte Ab_3
.byte QUARTER_NOTE
.byte Gb_3
.byte EIGHTH_TRIPLET
.byte Gb_3
.byte Gb_3
.byte Gb_3
.byte QUARTER_NOTE
.byte Gb_3
.byte EIGHTH_TRIPLET
.byte Gb_3
.byte Gb_3
.byte Gb_3
.byte QUARTER_NOTE
.byte F_3
.byte F_3
.byte F_3
.byte EIGHTH_NOTE
.byte G_3
.byte A_3
song8voiceB:
.byte HALF_NOTE
.byte D_4
.byte EIGHTH_TRIPLET
.byte REST
.byte REST
.byte D_4
.byte D_4
.byte D_4
.byte D_4
.byte C_4
.byte REST
.byte C_4
.byte QUARTER_NOTE
.byte C_4
.byte REST
.byte EIGHTH_TRIPLET
.byte C_4
.byte C_4
.byte C_4
.byte Db_4
.byte REST
.byte Db_4
.byte QUARTER_NOTE
.byte Db_4
.byte EIGHTH_TRIPLET
.byte REST
.byte REST
.byte Db_4
.byte Db_4
.byte Db_4
.byte Db_4
.byte SIXTEENTH_NOTE
.byte Db_4
.byte REST
.byte A_3
.byte A_3
.byte EIGHTH_NOTE
.byte A_3
.byte SIXTEENTH_NOTE
.byte A_3
.byte A_3
.byte EIGHTH_NOTE
.byte A_3
.byte SIXTEENTH_NOTE
.byte A_3
.byte A_3
.byte EIGHTH_NOTE
.byte A_3
.byte A_3
song6voiceB:
song7voiceB:
song8voiceD:
.byte $B1
.byte $90
.byte $90
.byte $90
.byte $B1
.byte $90
.byte $90
.byte $90
.byte $B1
.byte $90
.byte $90
.byte $90
.byte $D0
.byte $D0
.byte $D0
.byte D_6
.byte D_6
song0voiceA:
song4voiceA:
song9voiceA:
song12voiceA:
.byte EIGHTH_NOTE
.byte Bb_4
.byte REST
.byte DOTTED_QUARTER_NOTE
.byte F_4
.byte SIXTEENTH_NOTE
.byte REST
.byte Bb_4
.byte Bb_4
.byte C_5
.byte D_5
.byte Eb_5
.byte HALF_NOTE
.byte F_5
.byte EIGHTH_NOTE
.byte REST
.byte F_5
.byte EIGHTH_TRIPLET
.byte F_5
.byte Gb_5
.byte Ab_5
.byte SONG_END
song0voiceB:
song4voiceB:
song9voiceB:
song12voiceB:
.byte EIGHTH_NOTE
.byte D_4
.byte REST
.byte EIGHTH_TRIPLET
.byte D_4
.byte D_4
.byte C_4
.byte EIGHTH_NOTE
.byte D_4
.byte SIXTEENTH_NOTE
song6voiceD:
song7voiceD:
.byte REST
.byte D_4
.byte D_4
.byte Eb_4
.byte F_4
.byte G_4
.byte EIGHTH_NOTE
.byte Ab_4
.byte SIXTEENTH_NOTE
.byte REST
.byte Bb_4
.byte Bb_4
.byte C_5
.byte D_5
.byte Eb_5
.byte QUARTER_NOTE
.byte F_5
.byte EIGHTH_TRIPLET
.byte Ab_4
.byte Bb_4
.byte C_5
song0voiceC:
song4voiceC:
song9voiceC:
song12voiceC:
.byte QUARTER_NOTE
.byte Bb_3
.byte EIGHTH_TRIPLET
.byte Bb_3
.byte Bb_3
.byte Ab_3
.byte QUARTER_NOTE
.byte Bb_3
.byte Bb_3
.byte Ab_3
.byte EIGHTH_TRIPLET
.byte Ab_3
.byte Ab_3
.byte Gb_3
.byte QUARTER_NOTE
.byte Ab_3
.byte Ab_3
song10voiceA:
.byte HALF_NOTE
.byte Bb_5
.byte EIGHTH_TRIPLET
.byte REST
.byte Bb_5
.byte Bb_5
.byte Bb_5
.byte Ab_5
.byte Gb_5
.byte EIGHTH_TRIPLET
.byte Ab_5
.byte REST
.byte Gb_5
.byte HALF_NOTE
.byte F_5
.byte QUARTER_NOTE
.byte F_5
.byte EIGHTH_NOTE
.byte Eb_5
.byte SIXTEENTH_NOTE
.byte Eb_5
.byte F_5
.byte HALF_NOTE
.byte Gb_5
.byte EIGHTH_NOTE
.byte F_5
.byte Eb_5
.byte EIGHTH_NOTE
.byte Db_5
.byte SIXTEENTH_NOTE
.byte Db_5
.byte Eb_5
.byte HALF_NOTE
.byte F_5
.byte EIGHTH_NOTE
.byte Eb_5
.byte Db_5
.byte SONG_END
song10voiceB:
.byte EIGHTH_NOTE
.byte Db_5
.byte SIXTEENTH_NOTE
.byte REST
.byte Gb_4
.byte Gb_4
.byte Ab_4
.byte Bb_4
.byte C_5
.byte EIGHTH_TRIPLET
.byte Db_5
.byte REST
.byte Db_5
.byte Db_5
.byte C_5
.byte Bb_4
.byte Db_5
.byte REST
.byte Ab_4
.byte Ab_4
.byte Ab_4
.byte Gb_4
.byte Ab_4
.byte REST
.byte Ab_4
.byte Ab_4
.byte Gb_4
.byte Ab_4
.byte EIGHTH_NOTE
.byte Gb_4
.byte SIXTEENTH_NOTE
.byte Gb_4
.byte F_4
.byte EIGHTH_NOTE
.byte Gb_4
.byte SIXTEENTH_NOTE
.byte Gb_4
.byte Ab_4
.byte QUARTER_NOTE
.byte Bb_4
.byte EIGHTH_NOTE
.byte Ab_4
.byte Gb_4
.byte EIGHTH_NOTE
.byte F_4
.byte SIXTEENTH_NOTE
.byte F_4
.byte Eb_4
.byte EIGHTH_NOTE
.byte F_4
.byte SIXTEENTH_NOTE
.byte F_4
.byte Gb_4
.byte QUARTER_NOTE
.byte Ab_4
.byte EIGHTH_NOTE
.byte Gb_4
.byte F_4
song10voiceC:
.byte QUARTER_NOTE
.byte Gb_3
.byte EIGHTH_TRIPLET
.byte Gb_3
.byte Gb_3
.byte E_3
.byte QUARTER_NOTE
.byte Gb_3
.byte Gb_3
.byte Db_4
.byte EIGHTH_TRIPLET
.byte Db_4
.byte Db_4
.byte C_4
.byte QUARTER_NOTE
.byte Db_4
.byte Db_4
.byte B_3
.byte EIGHTH_TRIPLET
.byte B_3
.byte B_3
.byte Bb_3
.byte QUARTER_NOTE
.byte B_3
.byte EIGHTH_TRIPLET
.byte B_3
.byte B_3
.byte B_3
.byte QUARTER_NOTE
.byte Bb_3
.byte EIGHTH_TRIPLET
.byte Bb_3
.byte Bb_3
.byte Ab_3
.byte QUARTER_NOTE
.byte Bb_3
.byte EIGHTH_TRIPLET
.byte Bb_3
.byte Bb_3
.byte Bb_3
song0voiceD:
song4voiceD:
song9voiceD:
song10voiceD:
song12voiceD:
.byte $D0
.byte $90
.byte $90
.byte $90
.byte $D0
.byte $D0
.byte SONG_END
song11voiceA:
song14voiceA:
.byte EIGHTH_NOTE
.byte C_5
.byte SIXTEENTH_NOTE
.byte C_5
.byte D_5
.byte HALF_NOTE
.byte E_5
.byte QUARTER_NOTE
.byte G_5
.byte SIXTEENTH_NOTE
.byte F_5
.byte REST
.byte F_4
.byte F_4
.byte F_4
.byte REST
.byte F_4
.byte F_4
.byte F_4
.byte REST
.byte F_4
.byte F_4
.byte EIGHTH_NOTE
.byte F_4
.byte F_4
.byte SONG_END
song11voiceB:
song14voiceB:
.byte QUARTER_NOTE
.byte E_4
.byte EIGHTH_NOTE
.byte E_4
.byte SIXTEENTH_NOTE
.byte E_4
.byte F_4
.byte EIGHTH_NOTE
.byte G_4
.byte SIXTEENTH_NOTE
.byte G_4
.byte A_4
.byte EIGHTH_NOTE
.byte Bb_4
.byte C_5
.byte EIGHTH_NOTE
.byte A_4
.byte SIXTEENTH_NOTE
.byte A_3
.byte A_3
.byte EIGHTH_NOTE
.byte A_3
.byte SIXTEENTH_NOTE
.byte A_3
.byte A_3
.byte EIGHTH_NOTE
.byte A_3
.byte SIXTEENTH_NOTE
.byte A_3
.byte A_3
.byte EIGHTH_NOTE
.byte A_3
.byte A_3
song11voiceC:
song14voiceC:
.byte QUARTER_NOTE
.byte C_4
.byte EIGHTH_TRIPLET
.byte C_4
.byte C_4
.byte B_3
.byte QUARTER_NOTE
.byte C_4
.byte EIGHTH_TRIPLET
.byte C_4
.byte C_4
.byte C_4
.byte QUARTER_NOTE
.byte F_3
.byte F_3
.byte F_3
.byte EIGHTH_NOTE
.byte G_3
.byte A_3
song13voiceA:
.byte DOTTED_HALF_NOTE
.byte Bb_5
.byte QUARTER_NOTE
.byte Db_6
.byte EIGHTH_NOTE
.byte C_6
.byte REST
.byte HALF_NOTE
.byte A_5
.byte QUARTER_NOTE
.byte F_5
.byte DOTTED_HALF_NOTE
.byte Gb_5
.byte QUARTER_NOTE
.byte Bb_5
.byte EIGHTH_NOTE
.byte A_5
.byte REST
.byte HALF_NOTE
.byte F_5
.byte QUARTER_NOTE
.byte F_5
.byte DOTTED_HALF_NOTE
.byte Gb_5
.byte QUARTER_NOTE
.byte Bb_5
.byte EIGHTH_NOTE
.byte A_5
.byte REST
.byte HALF_NOTE
.byte F_5
.byte QUARTER_NOTE
.byte D_5
.byte DOTTED_HALF_NOTE
.byte Eb_5
.byte QUARTER_NOTE
.byte Gb_5
.byte EIGHTH_NOTE
.byte F_5
.byte REST
.byte HALF_NOTE
.byte Db_5
.byte QUARTER_NOTE
.byte Bb_4
.byte SONG_END
song13voiceB:
.byte DOTTED_HALF_NOTE
.byte Db_5
.byte QUARTER_NOTE
.byte E_5
.byte EIGHTH_NOTE
.byte Eb_5
.byte REST
.byte HALF_NOTE
.byte C_5
.byte QUARTER_NOTE
.byte A_4
.byte DOTTED_HALF_NOTE
.byte B_4
.byte QUARTER_NOTE
.byte Db_5
.byte EIGHTH_NOTE
.byte C_5
.byte REST
.byte HALF_NOTE
.byte A_4
.byte QUARTER_NOTE
.byte A_4
.byte DOTTED_HALF_NOTE
.byte B_4
.byte QUARTER_NOTE
.byte Db_5
.byte EIGHTH_NOTE
.byte C_5
.byte REST
.byte HALF_NOTE
.byte A_4
.byte QUARTER_NOTE
.byte A_4
.byte DOTTED_HALF_NOTE
.byte Gb_4
.byte QUARTER_NOTE
.byte B_4
.byte EIGHTH_NOTE
.byte Bb_4
.byte REST
.byte HALF_NOTE
.byte F_4
.byte QUARTER_NOTE
.byte Db_4
song13voiceC:
.byte QUARTER_NOTE
.byte Gb_3
.byte EIGHTH_TRIPLET
.byte Gb_3
.byte Gb_3
.byte E_3
.byte QUARTER_NOTE
.byte Gb_3
.byte Gb_3
.byte F_3
.byte EIGHTH_TRIPLET
.byte F_3
.byte F_3
.byte Eb_3
.byte QUARTER_NOTE
.byte F_3
.byte F_3
.byte EIGHTH_TRIPLET
.byte E_3
.byte Bb_3
.byte Db_4
.byte E_4
.byte Bb_4
.byte Db_5
.byte HALF_NOTE
.byte E_5
.byte QUARTER_NOTE
.byte F_5
.byte EIGHTH_TRIPLET
.byte F_3
.byte F_3
.byte F_3
.byte HALF_NOTE
.byte F_3
.byte EIGHTH_TRIPLET
.byte E_3
.byte Bb_3
.byte Db_4
.byte E_4
.byte Bb_4
.byte Db_5
.byte HALF_NOTE
.byte E_5
.byte QUARTER_NOTE
.byte F_5
.byte EIGHTH_TRIPLET
.byte F_3
.byte F_3
.byte F_3
.byte HALF_NOTE
.byte F_3
.byte QUARTER_NOTE
.byte B_3
.byte EIGHTH_TRIPLET
.byte B_3
.byte B_3
.byte Bb_3
.byte QUARTER_NOTE
.byte B_3
.byte EIGHTH_TRIPLET
.byte B_3
.byte B_3
.byte B_3
.byte QUARTER_NOTE
.byte Bb_3
.byte EIGHTH_TRIPLET
.byte Bb_3
.byte Bb_3
.byte Ab_3