]> git.sur5r.net Git - cc65/blobdiff - src/ld65/cfg/apple2enh-overlay.cfg
No copyright message here.
[cc65] / src / ld65 / cfg / apple2enh-overlay.cfg
index 0fcfe4a2a5588e26422edbe42888f318af0a0370..9216aa7c78165dfcc4a6c868764b69bc2ba675f3 100644 (file)
@@ -60,16 +60,17 @@ SEGMENTS {
     OVERLAY9: load = OVL9,            type = ro,  define = yes, optional = yes;
 }
 FEATURES {
-    CONDES: segment = INIT,
-            type    = constructor,
+    CONDES: type    = constructor,
             label   = __CONSTRUCTOR_TABLE__,
-            count   = __CONSTRUCTOR_COUNT__;
-    CONDES: segment = RODATA,
-            type    = destructor,
+            count   = __CONSTRUCTOR_COUNT__,
+            segment = INIT;
+    CONDES: type    = destructor,
             label   = __DESTRUCTOR_TABLE__,
-            count   = __DESTRUCTOR_COUNT__;
-    CONDES: segment = RODATA,
-            type    = interruptor,
+            count   = __DESTRUCTOR_COUNT__,
+            segment = RODATA;
+    CONDES: type    = interruptor,
             label   = __INTERRUPTOR_TABLE__,
-            count   = __INTERRUPTOR_COUNT__;
+            count   = __INTERRUPTOR_COUNT__,
+            segment = RODATA,
+            import  = __CALLIRQ__;
 }