2010-03-21 17:10:17 +00:00
|
|
|
SYMBOLS {
|
2013-02-12 20:55:19 +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
|
2016-09-13 20:02:37 +00:00
|
|
|
__BANK0BLOCKSIZE__: type = weak, value = $0400; # bank 0 cart block size
|
|
|
|
__BANK1BLOCKSIZE__: type = weak, value = $0000; # bank 1 block size
|
2013-02-12 20:55:19 +00:00
|
|
|
__EXEHDR__: type = import;
|
|
|
|
__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;
|
2016-03-07 00:28:55 +00:00
|
|
|
MAIN: file = %O, define = yes, start = $0200, size = $BE38 - __STACKSIZE__;
|
2004-10-08 18:51:37 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
2016-03-06 20:26:22 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
|
|
EXTZP: load = ZP, type = zp, optional = yes;
|
|
|
|
APPZP: load = ZP, type = zp, optional = yes;
|
2013-02-12 20:55:19 +00:00
|
|
|
EXEHDR: load = HEADER, type = ro;
|
|
|
|
BOOTLDR: load = BOOT, type = ro;
|
|
|
|
DIRECTORY: load = DIR, type = ro;
|
2016-03-07 00:28:55 +00:00
|
|
|
STARTUP: load = MAIN, type = ro, define = yes;
|
|
|
|
LOWCODE: load = MAIN, type = ro, define = yes, optional = yes;
|
|
|
|
ONCE: load = MAIN, type = ro, define = yes, optional = yes;
|
|
|
|
CODE: load = MAIN, type = ro, define = yes;
|
|
|
|
RODATA: load = MAIN, type = ro, define = yes;
|
|
|
|
DATA: load = MAIN, type = rw, define = yes;
|
|
|
|
BSS: load = MAIN, type = bss, define = yes;
|
2004-10-08 18:51:37 +00:00
|
|
|
}
|
|
|
|
FEATURES {
|
2013-02-12 20:55:19 +00:00
|
|
|
CONDES: type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__,
|
2016-03-06 20:26:22 +00:00
|
|
|
segment = ONCE;
|
2013-02-12 20:55:19 +00:00
|
|
|
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__;
|
2016-09-13 20:02:37 +00:00
|
|
|
}
|