]> git.sur5r.net Git - cc65/blobdiff - cfg/supervision.cfg
Renamed INITBSS to INIT and INIT to ONCE.
[cc65] / cfg / supervision.cfg
index 66fb4cfade8c58fee4b7eed3866543fde3a1efa4..b7ae207b8382281dced5b5e9da87cce07930daec 100644 (file)
@@ -10,21 +10,21 @@ MEMORY {
     ROM:      file = %O, start = $8000, size = $8000, fill = yes, fillval = $FF, define = yes;
 }
 SEGMENTS {
+    ZEROPAGE: load = ZP,             type = zp,  define = yes;
     LOWCODE:  load = ROM,            type = ro,                optional = yes;
-    INIT:     load = ROM,            type = ro,  define = yes, optional = yes;
+    ONCE:     load = ROM,            type = ro,  define = yes, optional = yes;
     CODE:     load = ROM,            type = ro,  define = yes;
     RODATA:   load = ROM,            type = ro,  define = yes;
     DATA:     load = ROM, run = RAM, type = rw,  define = yes;
     FFF0:     load = ROM,            type = ro,  offset = $7FF0;
     VECTOR:   load = ROM,            type = ro,  offset = $7FFA;
     BSS:      load = RAM,            type = bss, define = yes;
-    ZEROPAGE: load = ZP,             type = zp,  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__,