]> git.sur5r.net Git - cc65/blobdiff - cfg/osic1p.cfg
Renamed INITBSS to INIT and INIT to ONCE.
[cc65] / cfg / osic1p.cfg
index fd9aa604e244f2d5cbc384a33106e1cbdee71773..314eac0b9cb900680b633c5baaaa43145cd0fb8e 100644 (file)
@@ -15,22 +15,22 @@ MEMORY {
     RAM:      file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
 }
 SEGMENTS {
+    ZEROPAGE: load = ZP,   type = zp;
+    EXTZP:    load = ZP,   type = zp,  define = yes, optional = yes;
     BOOT:     load = HEAD, type = ro,                optional = yes;
     STARTUP:  load = RAM,  type = ro;
     LOWCODE:  load = RAM,  type = ro,                optional = yes;
-    INIT:     load = RAM,  type = ro,  define = yes, optional = yes;
+    ONCE:     load = RAM,  type = ro,  define = yes, optional = yes;
     CODE:     load = RAM,  type = rw;
     RODATA:   load = RAM,  type = rw;
     DATA:     load = RAM,  type = rw;
     BSS:      load = RAM,  type = bss, define = yes;
-    ZEROPAGE: load = ZP,   type = zp;
-    EXTZP:    load = ZP,   type = zp,  define = yes, optional = yes;
 }
 FEATURES {
     CONDES: type    = constructor,
             label   = __CONSTRUCTOR_TABLE__,
             count   = __CONSTRUCTOR_COUNT__,
-            segment = INIT;
+            segment = ONCE;
     CONDES: type    = destructor,
             label   = __DESTRUCTOR_TABLE__,
             count   = __DESTRUCTOR_COUNT__,