Added the new INIT segment to all configs and adjusted formatting.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3402 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-02-25 07:52:50 +00:00
parent 7910ebfacf
commit 34017fb89a
23 changed files with 261 additions and 229 deletions

View File

@@ -1,18 +1,19 @@
MEMORY {
ZP: start = $58, size = $28, type = rw, define = yes;
HEADER: start = $204, size = 508, file = %O;
RAM: start = $400, size = $5C00, define = yes, file = %O;
ZP: start = $0058, size = $0028, type = rw, define = yes;
HEADER: start = $0204, size = $01FC, file = %O;
RAM: start = $0400, size = $5C00, define = yes, file = %O;
}
SEGMENTS {
HEADER: load = HEADER, type = ro;
STARTUP: load = RAM, type = ro;
LOWCODE: load = RAM, type = ro, optional = yes;
CODE: load = RAM, type = ro;
RODATA: load = RAM, type = ro;
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
EXTZP: load = ZP, type = zp;
HEADER: load = HEADER, type = ro;
STARTUP: load = RAM, type = ro;
LOWCODE: load = RAM, type = ro, optional = yes;
INIT: load = RAM, type = ro, define = yes, optional = yes;
CODE: load = RAM, type = ro;
RODATA: load = RAM, type = ro;
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
EXTZP: load = ZP, type = zp;
}
FEATURES {
CONDES: segment = RODATA,