]> git.sur5r.net Git - cc65/commitdiff
Added missing __CALLIRQ__ import attribute.
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 12 Feb 2013 20:22:27 +0000 (20:22 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 12 Feb 2013 20:22:27 +0000 (20:22 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5983 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/apple2-overlay.cfg
src/ld65/cfg/apple2-system.cfg
src/ld65/cfg/c64-overlay.cfg

index 0fcfe4a2a5588e26422edbe42888f318af0a0370..f77c27f2baa2ce6b86a29de5d848b1007d219ecf 100644 (file)
@@ -71,5 +71,6 @@ FEATURES {
     CONDES: segment = RODATA,
             type    = interruptor,
             label   = __INTERRUPTOR_TABLE__,
-            count   = __INTERRUPTOR_COUNT__;
+            count   = __INTERRUPTOR_COUNT__,
+            import  = __CALLIRQ__;
 }
index 34fc3e85a3b1398e809cd8bd127199b1e7999e2e..bd0b328d31f25bb012564b01ace15fe080aef742 100644 (file)
@@ -38,5 +38,6 @@ FEATURES {
     CONDES: segment = RODATA,
             type    = interruptor,
             label   = __INTERRUPTOR_TABLE__,
-            count   = __INTERRUPTOR_COUNT__;
+            count   = __INTERRUPTOR_COUNT__,
+            import  = __CALLIRQ__;
 }
index 5995ce28ab5dc66b89936c9c130d9c3f2ab521ae..09eedb4f22de07effaf4314363e8b3f527e07531 100644 (file)
@@ -43,15 +43,16 @@ SEGMENTS {
 }
 FEATURES {
     CONDES: segment = INIT,
-           type    = constructor,
-           label   = __CONSTRUCTOR_TABLE__,
-           count   = __CONSTRUCTOR_COUNT__;
+            type    = constructor,
+            label   = __CONSTRUCTOR_TABLE__,
+            count   = __CONSTRUCTOR_COUNT__;
     CONDES: segment = RODATA,
-           type    = destructor,
-           label   = __DESTRUCTOR_TABLE__,
-           count   = __DESTRUCTOR_COUNT__;
+            type    = destructor,
+            label   = __DESTRUCTOR_TABLE__,
+            count   = __DESTRUCTOR_COUNT__;
     CONDES: segment = RODATA,
-           type    = interruptor,
-           label   = __INTERRUPTOR_TABLE__,
-           count   = __INTERRUPTOR_COUNT__;
+            type    = interruptor,
+            label   = __INTERRUPTOR_TABLE__,
+            count   = __INTERRUPTOR_COUNT__,
+            import  = __CALLIRQ__;
 }