-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.asm
More file actions
49 lines (36 loc) · 1.57 KB
/
main.asm
File metadata and controls
49 lines (36 loc) · 1.57 KB
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
;=============================================================================-;
; ;
; Reassembled FF6 Sound Engine ;
; by m06 ;
; ;
;==============================================================================;
;
; Big thanks to:
; madsiur, everything, emberling, Novalia Spirit and Evil Peer
; The people of FF6hacking.com
; The people of slickproductions.org
; Alcaro and randomdude999 for Asar help
;
;------------------------------ Header and Defs --------------------------------
hirom
; header
org $C50000
incsrc spc_ram_defs.asm
;----------------------------- SNES 65816 Program ------------------------------
; org $C50000
incsrc program.asm
;------------------------------ SPC-700 Program --------------------------------
; org $C5070E
SPC_Engine:
dw $17B7
;dw SPC_End-SPC_Start ; Length of SPC code (for transfer)
SPC_Start:
; incbin SPC700/SPC_Code.bin
incsrc spc_program.asm
SPC_End:
;----------------------- Sound Effects (Scripts and BRRs) ----------------------
; org $C51EC7
incsrc SoundEffects/SoundEffects_Data.asm
;------------------------ Music (Songs and Instruments) ------------------------
; org $C53C5E
incsrc Music/Music_Data.asm