forked from mist64/msbasic
-
Notifications
You must be signed in to change notification settings - Fork 24
/
eater.cfg
27 lines (24 loc) · 900 Bytes
/
eater.cfg
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
MEMORY {
ZP: start = $0000, size = $0100, type = rw;
INPUT_BUFFER: start = $0300, size = $0100, type = rw, file = "";
BASROM: start = $8000, size = $7E00, fill = yes, file = %O;
WOZMON: start = $FE00, size = $1FA, fill = yes, file = %O;
RESETVEC: start = $FFFA, size = 6, fill = yes, file = %O;
DUMMY: start = $0000, size = $00FF, file = "";
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp;
INPUT_BUFFER: load = INPUT_BUFFER, type = rw;
HEADER: load = BASROM, type = ro;
VECTORS: load = BASROM, type = ro;
KEYWORDS: load = BASROM, type = ro;
ERROR: load = BASROM, type = ro;
CODE: load = BASROM, type = ro;
CHRGET: load = BASROM, type = ro;
INIT: load = BASROM, type = ro;
EXTRA: load = BASROM, type = ro;
DUMMY: load = DUMMY; # don't include
BIOS: load = BASROM, type = ro;
WOZMON: load = WOZMON, type = ro;
RESETVEC: load = RESETVEC, type = ro;
}