-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadpcm-nsf.cfg
19 lines (18 loc) · 908 Bytes
/
adpcm-nsf.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MEMORY {
ZP: start = $00, size = $100, type = rw, file = "";
HDR: start = $7f80, size = $80, type = ro, file = %O;
CODE: start = $8000, size = $1000, type = ro, file = %O, fill = yes, fillval = $ff;
ADPCM0: start = $9000, size = $7000, type = ro, file = %O, fill = yes, fillval = $ff;
ADPCM1: start = $9000, size = $7000, type = ro, file = %O, fill = yes, fillval = $ff;
ADPCM2: start = $9000, size = $7000, type = ro, file = %O, fill = yes, fillval = $ff;
ADPCM3: start = $9000, size = $7000, type = ro, file = %O, fill = yes, fillval = $ff;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp;
HEADER: load = HDR, type = ro;
CODE: load = CODE, type = ro;
ADPCM0: load = ADPCM0, type = ro;
ADPCM1: load = ADPCM1, type = ro;
ADPCM2: load = ADPCM2, type = ro;
ADPCM3: load = ADPCM3, type = ro;
}