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,13 +1,16 @@
MEMORY {
ZP: start = $70, size = $20, type = rw, define = yes;
RAM: start = $E00, size = $7200, file = %O;
ZP: start = $0070, size = $0020, type = rw, define = yes;
RAM: start = $0E00, size = $7200, file = %O;
}
SEGMENTS {
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;
STARTUP: load = RAM, type = ro, define = yes;
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;
}
FEATURES {
CONDES: segment = RODATA,