Force inclusion of the load address.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4857 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-11-13 16:57:42 +00:00
parent 9948b5acfe
commit 36dc806193

View file

@ -1,22 +1,25 @@
SYMBOLS { SYMBOLS {
__STACKSIZE__: type = weak, value = $0800; # 2k stack __LOADADDR__: type = import;
__STACKSIZE__: type = weak, value = $0800; # 2k stack
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0002, size = $001A; ZP: file = "", define = yes, start = $0002, size = $001A;
HEADER: file = %O, start = $07FF, size = $000E; LOADADDR: file = %O, start = $07FF, size = $0002;
RAM: file = %O, define = yes, start = $080D, size = $C7F3 - __STACKSIZE__; HEADER: file = %O, start = $07FF, size = $000E;
RAM: file = %O, define = yes, start = $080D, size = $C7F3 - __STACKSIZE__;
} }
SEGMENTS { SEGMENTS {
EXEHDR: load = HEADER, type = ro; LOADADDR: load = LOADADDR, type = ro;
STARTUP: load = RAM, type = ro; EXEHDR: load = HEADER, type = ro;
LOWCODE: load = RAM, type = ro, optional = yes; STARTUP: load = RAM, type = ro;
INIT: load = RAM, type = ro, define = yes, optional = yes; LOWCODE: load = RAM, type = ro, optional = yes;
CODE: load = RAM, type = ro; INIT: load = RAM, type = ro, define = yes, optional = yes;
RODATA: load = RAM, type = ro; CODE: load = RAM, type = ro;
DATA: load = RAM, type = rw; RODATA: load = RAM, type = ro;
ZPSAVE: load = RAM, type = bss; DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes; ZPSAVE: load = RAM, type = bss;
ZEROPAGE: load = ZP, type = zp; BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
} }
FEATURES { FEATURES {
CONDES: segment = INIT, CONDES: segment = INIT,