mirror of
https://github.com/mist64/msbasic.git
synced 2024-11-13 11:07:16 +00:00
16 lines
397 B
INI
16 lines
397 B
INI
MEMORY {
|
|
ZP: start = $0000, size = $0100, type = rw;
|
|
BASROM: start = $0800, size = $3F00, fill = no, file = %O;
|
|
DUMMY: start = $0000, size = $00FF, file = "";
|
|
}
|
|
|
|
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 = DUMMY; # don't include
|
|
}
|
|
|