2 __STACKSIZE__: type = weak, value = $0800; # 2k stack
5 ZP: file = "", define = yes, start = $0070, size = $0020;
6 RAM: file = %O, start = $0E00, size = $7200 - __STACKSIZE__;
9 STARTUP: load = RAM, type = ro, define = yes;
10 LOWCODE: load = RAM, type = ro, optional = yes;
11 INIT: load = RAM, type = ro, define = yes, optional = yes;
12 CODE: load = RAM, type = ro;
13 RODATA: load = RAM, type = ro;
14 DATA: load = RAM, type = rw;
15 BSS: load = RAM, type = bss, define = yes;
16 ZEROPAGE: load = ZP, type = zp;
19 CONDES: type = constructor,
20 label = __CONSTRUCTOR_TABLE__,
21 count = __CONSTRUCTOR_COUNT__,
23 CONDES: type = destructor,
24 label = __DESTRUCTOR_TABLE__,
25 count = __DESTRUCTOR_COUNT__,
27 CONDES: type = interruptor,
28 label = __INTERRUPTOR_TABLE__,
29 count = __INTERRUPTOR_COUNT__,