2019-09-27 07:38:51 +00:00
|
|
|
FEATURES {
|
|
|
|
STARTADDRESS: default = $0801;
|
|
|
|
}
|
|
|
|
SYMBOLS {
|
|
|
|
__LOADADDR__: type = import;
|
|
|
|
__HIMEM__: type = weak, value = $9F00;
|
|
|
|
}
|
|
|
|
MEMORY {
|
2019-11-16 18:11:40 +00:00
|
|
|
ZP: file = "", start = $0002, size = $0080 - $0002, define = yes;
|
2019-09-27 07:38:51 +00:00
|
|
|
LOADADDR: file = %O, start = %S - 2, size = $0002;
|
|
|
|
MAIN: file = %O, start = %S, size = __HIMEM__ - %S;
|
|
|
|
}
|
|
|
|
SEGMENTS {
|
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
2019-11-16 18:11:40 +00:00
|
|
|
EXTZP: load = ZP, type = zp, optional = yes;
|
2019-09-27 07:38:51 +00:00
|
|
|
LOADADDR: load = LOADADDR, type = ro;
|
|
|
|
EXEHDR: load = MAIN, type = ro, optional = yes;
|
|
|
|
LOWCODE: load = MAIN, type = ro, optional = yes;
|
|
|
|
CODE: load = MAIN, type = ro;
|
|
|
|
RODATA: load = MAIN, type = ro;
|
|
|
|
DATA: load = MAIN, type = rw;
|
|
|
|
BSS: load = MAIN, type = bss, define = yes;
|
|
|
|
}
|
|
|
|
FEATURES {
|
|
|
|
CONDES: type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__,
|
|
|
|
segment = ONCE;
|
|
|
|
CONDES: type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__,
|
|
|
|
segment = RODATA;
|
|
|
|
CONDES: type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
|
|
|
count = __INTERRUPTOR_COUNT__,
|
|
|
|
segment = RODATA,
|
|
|
|
import = __CALLIRQ__;
|
|
|
|
}
|