2015-10-02 14:50:22 +00:00
|
|
|
# Linker config. to produce a NEC PC-Engine 8K, 16K, or 32K image (.bin)
|
2014-11-30 10:20:57 +00:00
|
|
|
SYMBOLS {
|
2018-02-23 21:06:49 +00:00
|
|
|
__CARTSIZE__: type = weak, value = $2000; # $2000, $4000, or $8000
|
2016-03-06 20:26:22 +00:00
|
|
|
__STACKSIZE__: type = weak, value = $0300; # 3 pages stack
|
2014-11-30 10:20:57 +00:00
|
|
|
}
|
2015-07-12 12:27:24 +00:00
|
|
|
MEMORY {
|
2015-11-17 14:14:15 +00:00
|
|
|
ZP: file = "", start = $0000, define = yes, size = $0100;
|
2018-02-23 21:06:49 +00:00
|
|
|
# RAM bank
|
2015-11-17 14:14:15 +00:00
|
|
|
MAIN: file = "", start = $2200, define = yes, size = $1E00 - __STACKSIZE__;
|
2018-02-23 21:06:49 +00:00
|
|
|
# ROM banks, before swapping, and after mapping
|
|
|
|
ROM: file = %O, start = $10000 - __CARTSIZE__, size = __CARTSIZE__, fill = yes, fillval = $FF;
|
2014-11-29 13:18:48 +00:00
|
|
|
}
|
2015-07-12 12:27:24 +00:00
|
|
|
SEGMENTS {
|
2018-02-23 21:06:49 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
|
|
EXTZP: load = ZP, type = zp, optional = yes;
|
|
|
|
APPZP: load = ZP, type = zp, optional = yes;
|
|
|
|
DATA: load = ROM, run = MAIN, type = rw, define = yes;
|
|
|
|
INIT: load = MAIN, type = bss, optional = yes;
|
|
|
|
BSS: load = MAIN, type = bss, define = yes;
|
|
|
|
RODATA: load = ROM, type = ro;
|
|
|
|
CODE: load = ROM, type = ro;
|
|
|
|
LOWCODE: load = ROM, type = ro, optional = yes;
|
|
|
|
ONCE: load = ROM, type = ro, optional = yes;
|
|
|
|
STARTUP: load = ROM, type = ro, start = $FFF6 - $0066;
|
|
|
|
VECTORS: load = ROM, type = ro, start = $FFF6;
|
2014-11-29 13:18:48 +00:00
|
|
|
}
|
|
|
|
FEATURES {
|
2015-07-12 14:40:52 +00:00
|
|
|
CONDES: type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__,
|
2016-03-06 20:26:22 +00:00
|
|
|
segment = ONCE;
|
2015-07-12 14:40:52 +00:00
|
|
|
CONDES: type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__,
|
|
|
|
segment = RODATA;
|
2015-09-19 13:55:43 +00:00
|
|
|
CONDES: type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
|
|
|
count = __INTERRUPTOR_COUNT__,
|
|
|
|
segment = RODATA,
|
|
|
|
import = __CALLIRQ__;
|
2014-11-29 13:18:48 +00:00
|
|
|
}
|