Added missing __CALLIRQ__ import attribute.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5983 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2013-02-12 20:22:27 +00:00
parent e8964cde74
commit 378101ea52
3 changed files with 14 additions and 11 deletions

View File

@@ -71,5 +71,6 @@ FEATURES {
CONDES: segment = RODATA, CONDES: segment = RODATA,
type = interruptor, type = interruptor,
label = __INTERRUPTOR_TABLE__, label = __INTERRUPTOR_TABLE__,
count = __INTERRUPTOR_COUNT__; count = __INTERRUPTOR_COUNT__,
import = __CALLIRQ__;
} }

View File

@@ -38,5 +38,6 @@ FEATURES {
CONDES: segment = RODATA, CONDES: segment = RODATA,
type = interruptor, type = interruptor,
label = __INTERRUPTOR_TABLE__, label = __INTERRUPTOR_TABLE__,
count = __INTERRUPTOR_COUNT__; count = __INTERRUPTOR_COUNT__,
import = __CALLIRQ__;
} }

View File

@@ -43,15 +43,16 @@ SEGMENTS {
} }
FEATURES { FEATURES {
CONDES: segment = INIT, CONDES: segment = INIT,
type = constructor, type = constructor,
label = __CONSTRUCTOR_TABLE__, label = __CONSTRUCTOR_TABLE__,
count = __CONSTRUCTOR_COUNT__; count = __CONSTRUCTOR_COUNT__;
CONDES: segment = RODATA, CONDES: segment = RODATA,
type = destructor, type = destructor,
label = __DESTRUCTOR_TABLE__, label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__; count = __DESTRUCTOR_COUNT__;
CONDES: segment = RODATA, CONDES: segment = RODATA,
type = interruptor, type = interruptor,
label = __INTERRUPTOR_TABLE__, label = __INTERRUPTOR_TABLE__,
count = __INTERRUPTOR_COUNT__; count = __INTERRUPTOR_COUNT__,
import = __CALLIRQ__;
} }