25 lines
620 B
INI
25 lines
620 B
INI
|
MEMORY {
|
||
|
ZP: start = $02, size = $1A, type = rw;
|
||
|
RAM: start = $0001, size = $FFF0, file = %O;
|
||
|
}
|
||
|
SEGMENTS {
|
||
|
CODE: load = RAM, type = wprot;
|
||
|
RODATA: load = RAM, type = wprot;
|
||
|
DATA: load = RAM, type = rw;
|
||
|
BSS: load = RAM, type = bss, define = yes;
|
||
|
ZEROPAGE: load = ZP, type = zp;
|
||
|
}
|
||
|
FEATURES {
|
||
|
CONDES: segment = RODATA,
|
||
|
type = constructor,
|
||
|
label = __CONSTRUCTOR_TABLE__,
|
||
|
count = __CONSTRUCTOR_COUNT__;
|
||
|
CONDES: segment = RODATA,
|
||
|
type = destructor,
|
||
|
label = __DESTRUCTOR_TABLE__,
|
||
|
count = __DESTRUCTOR_COUNT__;
|
||
|
}
|
||
|
SYMBOLS {
|
||
|
__STACKSIZE__ = $800; # 2K stack
|
||
|
}
|