From: ol.sc
Date: Tue, 12 Feb 2013 20:22:27 +0000 (+0000)
Subject: Added missing __CALLIRQ__ import attribute.
X-Git-Tag: V2.14~91
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=378101ea52f83798b2a4985d050fc4241c90e1a8;p=cc65
Added missing __CALLIRQ__ import attribute.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5983 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
diff --git a/src/ld65/cfg/apple2-overlay.cfg b/src/ld65/cfg/apple2-overlay.cfg
index 0fcfe4a2a..f77c27f2b 100644
--- a/src/ld65/cfg/apple2-overlay.cfg
+++ b/src/ld65/cfg/apple2-overlay.cfg
@@ -71,5 +71,6 @@ FEATURES {
CONDES: segment = RODATA,
type = interruptor,
label = __INTERRUPTOR_TABLE__,
- count = __INTERRUPTOR_COUNT__;
+ count = __INTERRUPTOR_COUNT__,
+ import = __CALLIRQ__;
}
diff --git a/src/ld65/cfg/apple2-system.cfg b/src/ld65/cfg/apple2-system.cfg
index 34fc3e85a..bd0b328d3 100644
--- a/src/ld65/cfg/apple2-system.cfg
+++ b/src/ld65/cfg/apple2-system.cfg
@@ -38,5 +38,6 @@ FEATURES {
CONDES: segment = RODATA,
type = interruptor,
label = __INTERRUPTOR_TABLE__,
- count = __INTERRUPTOR_COUNT__;
+ count = __INTERRUPTOR_COUNT__,
+ import = __CALLIRQ__;
}
diff --git a/src/ld65/cfg/c64-overlay.cfg b/src/ld65/cfg/c64-overlay.cfg
index 5995ce28a..09eedb4f2 100644
--- a/src/ld65/cfg/c64-overlay.cfg
+++ b/src/ld65/cfg/c64-overlay.cfg
@@ -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__;
}