]> git.sur5r.net Git - cc65/commitdiff
made more segments optional so that the config file can be used for assembler program...
authorChristian Groessler <chris@groessler.org>
Thu, 16 Jan 2014 22:45:21 +0000 (23:45 +0100)
committerChristian Groessler <chris@groessler.org>
Thu, 16 Jan 2014 22:56:32 +0000 (23:56 +0100)
cfg/atari-cart.cfg

index cf647265606b4b0c574a0ab8a3a8382be34923f8..04934309b818fe2102fa760436c6fe100f8c4d93 100644 (file)
@@ -11,17 +11,17 @@ SYMBOLS {
 MEMORY {
     ZP:         file = "", define = yes, start = $0082, size = $007E;
     RAM:        file = "", define = yes, start = %S,    size = $2000;
-    ROM:        file = %O, define = yes, start = $A000, size = $1FFA, fill = yes, fillval = $ff;
+    ROM:        file = %O, define = yes, start = $A000, size = $1FFA, fill = yes, fillval = $FF;
     CARTID:     file = %O,               start = $BFFA, size = $0006;
 }
 SEGMENTS {
-    STARTUP:   load = ROM,            type = ro,  define = yes;
+    STARTUP:   load = ROM,            type = ro,  define = yes, optional = yes;
     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;
-    DATA:      load = ROM, run = RAM, type = rw,  define = yes;
-    BSS:       load = RAM,            type = bss, 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;
     CARTHDR:   load = CARTID,         type = ro;
     ZEROPAGE:  load = ZP,             type = zp;
     EXTZP:     load = ZP,             type = zp,                optional = yes;