2005-07-24 20:57:00 +00:00
|
|
|
FEATURES {
|
|
|
|
STARTADDRESS: default = $2E00;
|
|
|
|
}
|
2005-07-29 21:16:38 +00:00
|
|
|
SYMBOLS {
|
2010-11-12 14:17:35 +00:00
|
|
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
|
|
|
__RESERVED_MEMORY__: type = weak, value = $0000;
|
2005-07-29 21:16:38 +00:00
|
|
|
}
|
2000-10-31 18:08:25 +00:00
|
|
|
MEMORY {
|
2010-11-12 19:59:02 +00:00
|
|
|
ZP: file = "", define = yes, start = $0082, size = $007E;
|
|
|
|
HEADER: file = %O, start = $0000, size = $0006;
|
|
|
|
RAM: file = %O, start = %S, size = $BC20 - __STACKSIZE__ - %S;
|
|
|
|
TRAILER: file = %O, start = $0000, size = $0006;
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
2005-07-29 21:16:38 +00:00
|
|
|
EXEHDR: load = HEADER, type = ro;
|
2009-08-04 20:04:41 +00:00
|
|
|
STARTUP: load = RAM, type = ro, define = yes;
|
2008-07-04 17:31:14 +00:00
|
|
|
LOWCODE: load = RAM, type = ro, define = yes, optional = yes;
|
|
|
|
INIT: load = RAM, type = ro, optional = yes;
|
|
|
|
CODE: load = RAM, type = ro, define = yes;
|
2005-07-29 21:16:38 +00:00
|
|
|
RODATA: load = RAM, type = ro;
|
|
|
|
DATA: load = RAM, type = rw;
|
|
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
2008-07-04 17:31:14 +00:00
|
|
|
EXTZP: load = ZP, type = zp, optional = yes;
|
2005-07-29 21:16:38 +00:00
|
|
|
AUTOSTRT: load = TRAILER, type = ro;
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
2000-11-20 23:04:30 +00:00
|
|
|
FEATURES {
|
2013-02-12 20:55:19 +00:00
|
|
|
CONDES: type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__,
|
|
|
|
segment = INIT;
|
|
|
|
CONDES: type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__,
|
|
|
|
segment = RODATA;
|
|
|
|
CONDES: type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
|
|
|
count = __INTERRUPTOR_COUNT__,
|
|
|
|
segment = RODATA,
|
2012-11-03 21:59:15 +00:00
|
|
|
import = __CALLIRQ__;
|
2000-11-20 23:04:30 +00:00
|
|
|
}
|