]> git.sur5r.net Git - cc65/blobdiff - src/ld65/cfg/none.cfg
Just some beautification.
[cc65] / src / ld65 / cfg / none.cfg
index dbb58f8d1af919108d9a550ef2012adeacd11a89..49409a82c3831d90222de9a90f19ff7cdadd6e30 100644 (file)
@@ -15,17 +15,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__;
 }