]> git.sur5r.net Git - cc65/blobdiff - src/ld65/cfg/atmos.cfg
Just some beautification.
[cc65] / src / ld65 / cfg / atmos.cfg
index 83c0679e418ff3420549ae4b0fa524e52ef3d27b..137c0e9a9d617aeb83bb74f2d08d5371484ce754 100644 (file)
@@ -19,17 +19,17 @@ SEGMENTS {
     ZEROPAGE: load = ZP,      type = zp;
 }
 FEATURES {
-    CONDES: segment = INIT,
-           type    = constructor,
-           label   = __CONSTRUCTOR_TABLE__,
-           count   = __CONSTRUCTOR_COUNT__;
-    CONDES: segment = RODATA,
-           type    = destructor,
-           label   = __DESTRUCTOR_TABLE__,
-           count   = __DESTRUCTOR_COUNT__;
-    CONDES: segment = RODATA,
-           type    = interruptor,
-           label   = __INTERRUPTOR_TABLE__,
-           count   = __INTERRUPTOR_COUNT__,
+    CONDES: type    = constructor,
+            label   = __CONSTRUCTOR_TABLE__,
+            count   = __CONSTRUCTOR_COUNT__,
+            segment = INIT;
+    CONDES: type    = destructor,
+            label   = __DESTRUCTOR_TABLE__,
+            count   = __DESTRUCTOR_COUNT__,
+            segment = RODATA;
+    CONDES: type    = interruptor,
+            label   = __INTERRUPTOR_TABLE__,
+            count   = __INTERRUPTOR_COUNT__,
+            segment = RODATA,
             import  = __CALLIRQ__;
 }