Vicious/firmware/ld_rom.cfg

41 lines
1.4 KiB
INI

MEMORY {
ZP: start = $0020, size = $00C0, define = yes;
HEADER: start = $0000, size = $0004, file = "";
RAM: start = $6000, size = $1000, type = rw, define = yes;
RAMC: start = $7000, size = $1000, type = rw, define = yes, file = "VICIOUSCFFA1";
ROM: start = $B000, size = $F00, type = ro, define = yes, file = %O, fill = yes;
}
SEGMENTS {
EXEHDR: load = HEADER, type = ro;
VECTORS: load = ROM, type = ro;
STARTUP: load = ROM, type = ro, define = yes;
LOWCODE: load = ROM, type = ro, optional = yes;
INIT: load = ROM, type = ro, define = yes, optional = yes;
CODE: load = ROM, type = ro;
CODERAMSTART: load = RAMC, type = ro;
CODERAM: load = RAMC, type = ro;
RODATA: load = ROM, type = ro;
DATA: load = ROM, run = RAM, type = rw, define = yes;
BSS: load = RAM, type = bss, define = yes;
HEAP: load = RAM, type = bss, optional = yes;
ZEROPAGE: load = ZP, type = zp;
}
FEATURES {
CONDES: segment = INIT,
type = constructor,
label = __CONSTRUCTOR_TABLE__,
count = __CONSTRUCTOR_COUNT__;
CONDES: segment = RODATA,
type = destructor,
label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__;
CONDES: type = interruptor,
segment = RODATA,
label = __INTERRUPTOR_TABLE__,
count = __INTERRUPTOR_COUNT__;
}
SYMBOLS {
__STACKSIZE__ = $400;
}