2005-07-24 20:57:00 +00:00
|
|
|
FEATURES {
|
|
|
|
STARTADDRESS: default = $2E00;
|
|
|
|
}
|
2005-07-29 21:16:38 +00:00
|
|
|
SYMBOLS {
|
2009-10-01 17:00:10 +00:00
|
|
|
__STACKSIZE__: value = $0800, weak = yes; # 2k stack
|
|
|
|
__RESERVED_MEMORY__: value = $0000, weak = yes;
|
2005-07-29 21:16:38 +00:00
|
|
|
}
|
2000-10-31 18:08:25 +00:00
|
|
|
MEMORY {
|
2010-03-21 17:10:17 +00:00
|
|
|
ZP: 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;
|
2008-07-04 17:31:14 +00:00
|
|
|
ZPSAVE: load = RAM, type = bss, define = yes;
|
2005-07-29 21:16:38 +00:00
|
|
|
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 {
|
2005-02-26 09:06:12 +00:00
|
|
|
CONDES: segment = INIT,
|
2010-03-21 17:10:17 +00:00
|
|
|
type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__;
|
2000-11-20 23:04:30 +00:00
|
|
|
CONDES: segment = RODATA,
|
2010-03-21 17:10:17 +00:00
|
|
|
type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__;
|
|
|
|
CONDES: segment = RODATA,
|
|
|
|
type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
|
|
|
count = __INTERRUPTOR_COUNT__;
|
2000-11-20 23:04:30 +00:00
|
|
|
}
|