1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

fix last change

This commit is contained in:
Christian Groessler 2014-01-16 23:49:04 +01:00
parent dcbefb1018
commit 5a404b6786

View File

@ -19,9 +19,9 @@ SEGMENTS {
LOWCODE: load = ROM, type = ro, define = yes, optional = yes;
INIT: load = ROM, type = ro, optional = yes;
CODE: load = ROM, type = ro, define = yes;
RODATA: load = ROM, type = ro; optional = yes;
DATA: load = ROM, run = RAM, type = rw, define = yes; optional = yes;
BSS: load = RAM, type = bss, define = yes; optional = yes;
RODATA: load = ROM, type = ro, optional = yes;
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;
EXTZP: load = ZP, type = zp, optional = yes;