2015-07-12 12:27:24 +00:00
|
|
|
# linker config to produce simple NEC PC-Engine cartridge (.pce)
|
|
|
|
|
2014-11-30 10:20:57 +00:00
|
|
|
SYMBOLS {
|
2016-03-06 20:26:22 +00:00
|
|
|
__STACKSIZE__: type = weak, value = $0300; # 3 pages stack
|
2014-11-30 10:20:57 +00:00
|
|
|
}
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-07-12 12:27:24 +00:00
|
|
|
MEMORY {
|
2016-03-06 20:26:22 +00:00
|
|
|
# FIXME: is this correct? the first 3? bytes cant be used?
|
|
|
|
ZP: file = "", start = $0003, size = $00FD, type = rw, define = yes;
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
# reset-bank and hardware vectors
|
|
|
|
ROM0: file = %O, start = $E000, size = $1FF6, fill = yes, define = yes;
|
|
|
|
ROMV: file = %O, start = $FFF6, size = $000A, fill = yes;
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
# first RAM page (also contains stack and zeropage)
|
|
|
|
RAM: file = "", start = $2200, size = $1e00, define = yes;
|
2014-11-29 13:18:48 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 12:27:24 +00:00
|
|
|
SEGMENTS {
|
2016-03-06 20:26:22 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp, define = yes;
|
|
|
|
EXTZP: load = ZP, type = zp, define = yes, optional = yes;
|
|
|
|
APPZP: load = ZP, type = zp, define = yes, optional = yes;
|
|
|
|
STARTUP: load = ROM0, type = ro, define = yes;
|
2016-03-15 20:25:22 +00:00
|
|
|
ONCE: load = ROM0, type = ro, optional = yes;
|
2016-03-06 20:26:22 +00:00
|
|
|
CODE: load = ROM0, type = ro, define = yes;
|
|
|
|
RODATA: load = ROM0, type = ro, define = yes;
|
|
|
|
DATA: load = ROM0, run = RAM, type = rw, define = yes;
|
|
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
|
|
VECTORS: load = ROMV, type = rw, define = yes;
|
2014-11-29 13:18:48 +00:00
|
|
|
}
|
2015-07-12 12:27:24 +00:00
|
|
|
|
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
|
|
|
}
|