mirror of
https://github.com/mist64/msbasic.git
synced 2024-11-14 17:05:19 +00:00
15 lines
360 B
INI
15 lines
360 B
INI
MEMORY {
|
|
ZP: start = $0000, size = $0100, type = rw;
|
|
BASROM: start = $2000, size = $3F00, fill = no, file = %O;
|
|
}
|
|
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
HEADER: load = BASROM, type = ro;
|
|
VECTORS: load = BASROM, type = ro;
|
|
KEYWORDS: load = BASROM, type = ro;
|
|
CODE: load = BASROM, type = ro;
|
|
DUMMY: load = BASROM, type = zp; # don't include
|
|
}
|
|
|