Renamed GEOSZP to EXTZP. Added a --dump-config command that dumps a builtin linker config. git-svn-id: svn://svn.cc65.org/cc65/trunk@1987 b7a2c559-68d2-44c3-8de9-860c34a00d81
26 lines
681 B
INI
26 lines
681 B
INI
MEMORY {
|
|
ZP: start = $02, size = $8E, type = rw, define = yes;
|
|
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;
|
|
EXTZP: load = ZP, type = zp, define = yes;
|
|
}
|
|
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
|
|
}
|