]> git.sur5r.net Git - cc65/blobdiff - cfg/pet.cfg
Fixed _textcolor definition.
[cc65] / cfg / pet.cfg
index 80d89ee50a45cd069554d96eba96ab502998059a..6eb2465b033e4e433aeaa6b193ce1b2d2f7518d7 100644 (file)
@@ -10,23 +10,23 @@ MEMORY {
     RAM:      file = %O,               start = $040D, size = $7BF3 - __STACKSIZE__;
 }
 SEGMENTS {
+    ZEROPAGE: load = ZP,       type = zp;
     LOADADDR: load = LOADADDR, type = ro;
     EXEHDR:   load = HEADER,   type = ro;
     STARTUP:  load = RAM,      type = ro;
-    LOWCODE:  load = RAM,      type = ro,                optional = yes;
-    INIT:     load = RAM,      type = ro,  define = yes, optional = yes;
+    LOWCODE:  load = RAM,      type = ro,  optional = yes;
+    ONCE:     load = RAM,      type = ro,  optional = yes;
     CODE:     load = RAM,      type = ro;
     RODATA:   load = RAM,      type = ro;
     DATA:     load = RAM,      type = rw;
-    INITBSS:  load = RAM,      type = bss;
-    BSS:      load = RAM,      type = bss, define = yes;
-    ZEROPAGE: load = ZP,       type = zp;
+    INIT:     load = RAM,      type = bss;
+    BSS:      load = RAM,      type = bss, define   = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
             label   = __CONSTRUCTOR_TABLE__,
             count   = __CONSTRUCTOR_COUNT__,
-            segment = INIT;
+            segment = ONCE;
     CONDES: type    = destructor,
             label   = __DESTRUCTOR_TABLE__,
             count   = __DESTRUCTOR_COUNT__,