mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
38 lines
1.2 KiB
INI
38 lines
1.2 KiB
INI
FEATURES {
|
|
STARTADDRESS: default = $0801;
|
|
}
|
|
SYMBOLS {
|
|
__LOADADDR__: type = import;
|
|
__HIMEM__: type = weak, value = $9F00;
|
|
}
|
|
MEMORY {
|
|
ZP: file = "", start = $0004, size = $0090 - $0004, define = yes;
|
|
LOADADDR: file = %O, start = %S - 2, size = $0002;
|
|
MAIN: file = %O, start = %S, size = __HIMEM__ - %S;
|
|
}
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
LOADADDR: load = LOADADDR, type = ro;
|
|
EXEHDR: load = MAIN, type = ro, optional = yes;
|
|
LOWCODE: load = MAIN, type = ro, optional = yes;
|
|
CODE: load = MAIN, type = ro;
|
|
RODATA: load = MAIN, type = ro;
|
|
DATA: load = MAIN, type = rw;
|
|
BSS: load = MAIN, type = bss, define = yes;
|
|
}
|
|
FEATURES {
|
|
CONDES: type = constructor,
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
count = __CONSTRUCTOR_COUNT__,
|
|
segment = ONCE;
|
|
CONDES: type = destructor,
|
|
label = __DESTRUCTOR_TABLE__,
|
|
count = __DESTRUCTOR_COUNT__,
|
|
segment = RODATA;
|
|
CONDES: type = interruptor,
|
|
label = __INTERRUPTOR_TABLE__,
|
|
count = __INTERRUPTOR_COUNT__,
|
|
segment = RODATA,
|
|
import = __CALLIRQ__;
|
|
}
|