-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtetris.nes.cfg
21 lines (20 loc) · 909 Bytes
/
tetris.nes.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 = $0000, size = $0100, type = rw, file = "";
#OAM: start = $0200, size = $0100, type = rw, file = "";
RAM: start = $0100, size = $1F00, type = rw, file = "";
HDR: start = $0000, size = $0010, type = ro, fill = yes, fillval = $00;
PRG: start = $8000, size = $8000, type = ro, fill = yes, fillval = $00;
CHR: start = $0000, size = $4000, type = ro, fill = yes, fillval = $00;
}
SEGMENTS {
ZEROPAGE: load = ZP;
BSS: load = RAM, type = bss;
HEADER: load = HDR, type = ro;
CHR: load = CHR, type = ro;
PRG_chunk1: load = PRG, type = ro;
unreferenced_data1:load = PRG, type = ro;
PRG_chunk2: load = PRG, type = ro, start = $DD00;
unreferenced_data4:load = PRG, type = ro;
PRG_chunk3: load = PRG, type = ro, start = $FF00;
VECTORS: load = PRG, type = ro, start = $FFFA;
}