Add tools/ and manual/, move sources to src/
[dpadhero2.git] / src / songs / count.asm
blob6e3c8c538d7dc8000be3cbf507c8e0b6fd03e83e
2 ; Copyright (C) 2009 Kent Hansen.
4 ; This program is free software; you can redistribute it and/or modify
5 ; it under the terms of the GNU General Public License as published by
6 ; the Free Software Foundation; either version 3 of the License, or
7 ; (at your option) any later version.
9 ; This program is distributed in the hope that it will be useful,
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ; GNU General Public License for more details.
14 ; You should have received a copy of the GNU General Public License
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
18 .codeseg
20 .public count_song
22 count_instrument_table:
23 .dw env1 : .db $00,$00,$00,$92 : .db $00,$00 ; 0
24 .dw env2 : .db $00,$00,$00,$22 : .db $00,$00 ; 1
25 .dw env0 : .db $00,$00,$00,$42 : .db $00,$00 ; 2
26 .dw env1 : .db $00,$00,$00,$00 : .db $00,$00 ; 3 triangle (short)
27 .dw env0 : .db $00,$00,$00,$00 : .db $00,$00 ; 4 triangle (infinite)
28 .dw env3 : .db $00,$00,$00,$00 : .db $00,$00 ; 5 noise (closed)
29 .dw env4 : .db $00,$00,$00,$00 : .db $00,$00 ; 6 noise (open)
30 .dw env5 : .db $00,$00,$00,$00 : .db $00,$00 ; 7 noise (snare)
31 .dw env3 : .db $00,$00,$00,$00 : .db $00,$00 ; 8 triangle (very short)
32 .dw env6 : .db $00,$00,$00,$82 : .db $00,$00 ; 9 short guitar
33 .dw env7 : .db $00,$00,$00,$22 : .db $00,$00 ; 10 short guitar
34 .dw env8 : .db $00,$00,$00,$00 : .db $00,$00 ; 11 noise (cymbalo)
35 .dw env9 : .db $00,$00,$00,$80 : .db $00,$00 ; 12 noise (triangle-hihat)
37 env0:
38 .db $08
39 .db $00,$00,$FF,$08
40 .db $08,$00,$00,$00
41 .db $FF,$FF
42 env1:
43 .db $08
44 .db $00,$00,$FF,$08
45 .db $08,$00,$00,$00
46 .db $FF,$FF
47 env2:
48 .db $07
49 .db $00,$00,$FF,$07
50 .db $07,$00,$00,$00
51 .db $FF,$FF
52 env3:
53 .db $0A
54 .db $01,$80,$00,$00
55 .db $FF,$FF
56 env4:
57 .db $0A
58 .db $00,$E0,$00,$00
59 .db $FF,$FF
60 env5:
61 .db $0A
62 .db $00,$D0,$00,$00
63 .db $FF,$FF
64 env6:
65 .db $0F
66 .db $04,$00,$00,$00
67 .db $FF,$FF
68 env7:
69 .db $08
70 .db $02,$00,$00,$00
71 .db $FF,$FF
72 env8:
73 .db $0C
74 .db $00,$58,$00,$00
75 .db $FF,$FF
76 env9:
77 .db $06
78 .db $00,$60,$00,$00
79 .db $FF,$FF
81 .include "count.inc"
83 .end