add Libertango vs Castlevania remix
[kents-nes-stuff.git] / src / music / libtango / song.asm
blobe48df24a0df017ee3356669085b738d86e4d6c40
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 song_song
22 song_instrument_table:
23 .dw env0 : .db $00,$00,$00,$92 : .db $00,$00 ; 0
24 .dw env2 : .db $00,$00,$00,$23 : .db $00,$00 ; 1
25 .dw env6 : .db $00,$00,$00,$83 : .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)
33 env0:
34 .db $03
35 .db $00,$00,$FF,$03
36 .db $03,$00,$00,$00
37 .db $FF,$FF
38 env1:
39 .db $0D
40 .db $01,$00,$00,$00
41 .db $FF,$FF
42 env3:
43 .db $08
44 .db $03,$00,$00,$00
45 .db $FF,$FF
46 env4:
47 .db $06
48 .db $02,$00,$00,$00
49 .db $FF,$FF
50 env5:
51 .db $0B
52 .db $03,$00,$00,$00
53 .db $02,$00,$00,$09
54 .db $02,$00,$00,$00
55 .db $FF,$FF
56 env6:
57 .db $06
58 .db $00,$00,$FF,$06
59 .db $06,$00,$00,$00
60 .db $FF,$FF
61 env2:
62 .db $05
63 .db $00,$00,$FF,$05
64 .db $05,$00,$00,$00
65 .db $FF,$FF
67 .include "song.inc"
69 .end