Added a new extended (and machine specific) zeropage segment named EXTZP.

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
This commit is contained in:
cuz
2003-02-16 14:32:13 +00:00
parent 2a567c4a32
commit a9899eba15
8 changed files with 82 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
MEMORY {
ZP: start = $02, size = $1A, type = rw, define = yes;
ZP: start = $02, size = $8E, type = rw, define = yes;
RAM: start = $0001, size = $DFFF, file = %O;
CHARRAM: start = $E000, size = $1000, define = yes, file = "";
VIDRAM: start = $F000, size = $0400, define = yes, file = "";
@@ -10,6 +10,7 @@ SEGMENTS {
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,

View File

@@ -1,5 +1,5 @@
MEMORY {
ZP: start = $02, size = $1A, type = rw, define = yes;
ZP: start = $02, size = $8E, type = rw, define = yes;
RAM: start = $0001, size = $FFF0, file = %O;
}
SEGMENTS {
@@ -8,6 +8,7 @@ SEGMENTS {
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,

View File

@@ -12,7 +12,7 @@ SEGMENTS {
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
GEOSZP: load = ZP, type = zp;
EXTZP: load = ZP, type = zp;
}
FEATURES {
CONDES: segment = RODATA,

View File

@@ -9,6 +9,7 @@ SEGMENTS {
DATA: load = COMBINED, type = rw, define = yes;
BSS: load = COMBINED, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
EXTZP: load = ZP, type = zp;
}
FILES {
%O: format = o65;