-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
eznsf_nrom.cfg
21 lines (20 loc) · 925 Bytes
/
eznsf_nrom.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
MEMORY {
ZP: start = $00FC, size = $0004, type = rw, file = "";
RAM: start = $0600, size = $0100, type = rw, file = "";
OAM: start = $0700, size = $0100, type = rw, file = "";
HDR: start = $0000, size = $0010, type = ro, file = %O, fill = yes, fillval = $00;
PRG: start = $8000, size = $8000, type = ro, file = %O, fill = yes, fillval = $00;
CHR: start = $0000, size = $2000, type = ro, file = %O, fill = yes, fillval = $00;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, define = yes;
BSS: load = RAM, type = bss;
OAM: load = OAM, type = bss, align = 256;
HEADER: load = HDR, type = ro;
NSF: load = PRG, type = ro, start = $8000;
CODE: load = PRG, type = ro;
RAMCODE: load = PRG, run = RAM, type = ro, define = yes;
ALIGN: load = PRG, type = ro, align = 32, optional = yes;
VECTORS: load = PRG, type = ro, start = $FFFA;
TILES: load = CHR, type = ro;
}