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,25 +1,26 @@
MEMORY {
BASICHDR: start = $01, size = $50, type = rw, fill = yes, fillval = 0, file = %O;
ZP: start = $51, size = $A6, type = rw, define = yes, fill = yes, fillval = 0, file = %O;
STARTUP: start = $00F7, size = $109, fill = yes, fillval = 0, file = %O;
PAGE2: start = $0200, size = $100, fill = yes, fillval = 0, file = %O;
PAGE3: start = $0300, size = $100, fill = yes, fillval = 0, file = %O;
RAM: start = $0400, size = $DC00, file = %O;
CHARRAM: start = $E000, size = $1000, define = yes, file = "";
VIDRAM: start = $F000, size = $0400, define = yes, file = "";
BASICHDR: start = $0001, size = $0050, fill = yes, fillval = 0, type = rw, file = %O;
ZP: start = $0051, size = $00A6, fill = yes, fillval = 0, type = rw, file = %O, define = yes;
STARTUP: start = $00F7, size = $0109, fill = yes, fillval = 0, file = %O;
PAGE2: start = $0200, size = $0100, fill = yes, fillval = 0, file = %O;
PAGE3: start = $0300, size = $0100, fill = yes, fillval = 0, file = %O;
RAM: start = $0400, size = $DC00, file = %O;
CHARRAM: start = $E000, size = $1000, define = yes, file = "";
VIDRAM: start = $F000, size = $0400, define = yes, file = "";
}
SEGMENTS {
BASICHDR: load = BASICHDR, type = rw;
STARTUP: load = STARTUP, type = rw;
PAGE2: load = PAGE2, type = rw;
PAGE3: load = PAGE3, type = rw;
LOWCODE: load = RAM, type = ro, optional = 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;
EXTZP: load = ZP, type = rw, define = yes;
EXTZP: load = ZP, type = rw, define = yes;
}
FEATURES {
CONDES: segment = RODATA,