2010-03-21 17:10:17 +00:00
|
|
|
SYMBOLS {
|
2010-11-12 14:17:35 +00:00
|
|
|
__STACKSIZE__: type = weak, value = $0800; # 2k stack
|
2012-09-11 13:01:39 +00:00
|
|
|
__STARTOFDIRECTORY__: type = weak, value = $00CB; # start just after loader
|
2010-12-29 10:37:57 +00:00
|
|
|
__BLOCKSIZE__: type = weak, value = 1024; # cart block size
|
2011-01-26 22:14:42 +00:00
|
|
|
__EXEHDR__: type = import;
|
2011-03-21 17:49:03 +00:00
|
|
|
__BOOTLDR__: type = import;
|
|
|
|
__DEFDIR__: type = import;
|
2010-03-21 17:10:17 +00:00
|
|
|
}
|
2004-10-08 18:51:37 +00:00
|
|
|
MEMORY {
|
2010-11-12 19:59:02 +00:00
|
|
|
ZP: file = "", define = yes, start = $0000, size = $0100;
|
2011-03-21 17:49:03 +00:00
|
|
|
HEADER: file = %O, start = $0000, size = $0040;
|
|
|
|
BOOT: file = %O, start = $0200, size = __STARTOFDIRECTORY__;
|
|
|
|
DIR: file = %O, start = $0000, size = 8;
|
|
|
|
RAM: file = %O, define = yes, start = $0200, size = $BE38 - __STACKSIZE__;
|
2004-10-08 18:51:37 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
2005-02-25 07:52:50 +00:00
|
|
|
EXEHDR: load = HEADER, type = ro;
|
2011-03-21 17:49:03 +00:00
|
|
|
BOOTLDR: load = BOOT, type = ro;
|
|
|
|
DIRECTORY:load = DIR, type = ro;
|
2011-01-04 19:39:07 +00:00
|
|
|
STARTUP: load = RAM, type = ro, define = yes;
|
2010-03-21 17:10:17 +00:00
|
|
|
LOWCODE: load = RAM, type = ro, optional = yes;
|
|
|
|
INIT: load = RAM, type = ro, define = yes, optional = yes;
|
2011-01-04 19:39:07 +00:00
|
|
|
CODE: load = RAM, type = ro, define = yes;
|
|
|
|
RODATA: load = RAM, type = ro, define = yes;
|
|
|
|
DATA: load = RAM, type = rw, define = yes;
|
2005-02-25 07:52:50 +00:00
|
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
2010-03-21 17:10:17 +00:00
|
|
|
EXTZP: load = ZP, type = zp, optional = yes;
|
|
|
|
APPZP: load = ZP, type = zp, optional = yes;
|
2004-10-08 18:51:37 +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__;
|
2004-10-08 18:51:37 +00:00
|
|
|
CONDES: segment = RODATA,
|
2010-03-21 17:10:17 +00:00
|
|
|
type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__;
|
2004-10-08 18:51:37 +00:00
|
|
|
CONDES: segment = RODATA,
|
2010-03-21 17:10:17 +00:00
|
|
|
type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
2012-11-03 21:59:15 +00:00
|
|
|
count = __INTERRUPTOR_COUNT__,
|
|
|
|
import = __CALLIRQ__;
|
2004-10-08 18:51:37 +00:00
|
|
|
}
|