2002-04-25 05:07:12 +00:00
|
|
|
MEMORY {
|
2002-05-25 15:58:00 +00:00
|
|
|
ZP: start = $0000, size = $0100, type = rw, define = yes;
|
2002-04-25 05:07:12 +00:00
|
|
|
COMBINED: start = $0000, size = $FFFF, file = %O;
|
|
|
|
}
|
|
|
|
SEGMENTS {
|
2005-01-08 21:08:04 +00:00
|
|
|
JUMPTABLE: load = COMBINED, type = ro;
|
|
|
|
CODE: load = COMBINED, type = ro;
|
|
|
|
RODATA: load = COMBINED, type = ro;
|
2002-04-25 05:07:12 +00:00
|
|
|
DATA: load = COMBINED, type = rw, define = yes;
|
|
|
|
BSS: load = COMBINED, type = bss, define = yes;
|
2002-05-25 15:58:00 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
2003-02-16 14:32:13 +00:00
|
|
|
EXTZP: load = ZP, type = zp;
|
2002-04-25 05:07:12 +00:00
|
|
|
}
|
|
|
|
FILES {
|
|
|
|
%O: format = o65;
|
|
|
|
}
|
|
|
|
FORMATS {
|
|
|
|
o65: os = cc65, type = small;
|
|
|
|
}
|
|
|
|
|
|
|
|
|