1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00

make "ZEROPAGE" segment optional

This commit is contained in:
Christian Groessler 2014-01-22 13:25:36 +01:00
parent e339868147
commit ca9fb8b6ed
2 changed files with 2 additions and 2 deletions

View File

@ -24,6 +24,6 @@ SEGMENTS {
RODATA: load = RAM, type = ro optional = yes;
DATA: load = RAM, type = rw optional = yes;
BSS: load = RAM, type = bss, define = yes, optional = yes;
ZEROPAGE: load = ZP, type = zp;
ZEROPAGE: load = ZP, type = zp, optional = yes;
AUTOSTRT: load = TRAILER, type = ro, optional = yes;
}

View File

@ -24,7 +24,7 @@ SEGMENTS {
DATA: load = ROM, run = RAM, type = rw, define = yes, optional = yes;
BSS: load = RAM, type = bss, define = yes, optional = yes;
CARTHDR: load = CARTID, type = ro;
ZEROPAGE: load = ZP, type = zp;
ZEROPAGE: load = ZP, type = zp, optional = yes;
EXTZP: load = ZP, type = zp, optional = yes;
}
FEATURES {