From: cuz Date: Mon, 25 Jul 2005 17:05:52 +0000 (+0000) Subject: Fixed obsolete __IRQFUNC_COUNT__ symbol name X-Git-Tag: V2.12.0~295 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bec540da9e60e33be30c4a00c8472e9a093e82ab;p=cc65 Fixed obsolete __IRQFUNC_COUNT__ symbol name git-svn-id: svn://svn.cc65.org/cc65/trunk@3548 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/vic20/crt0.s b/libsrc/vic20/crt0.s index 81a9c025d..5864382bb 100644 --- a/libsrc/vic20/crt0.s +++ b/libsrc/vic20/crt0.s @@ -9,7 +9,7 @@ .import zerobss, push0 .import callmain .import RESTOR, BSOUT, CLRCH - .import __IRQFUNC_COUNT__ + .import __INTERRUPTOR_COUNT__ .import __RAM_START__, __RAM_SIZE__ ; Linker generated .include "zeropage.inc" @@ -72,7 +72,7 @@ L1: lda sp,x ; If we have IRQ functions, chain our stub into the IRQ vector - lda #<__IRQFUNC_COUNT__ + lda #<__INTERRUPTOR_COUNT__ beq NoIRQ1 lda IRQVec ldx IRQVec+1 @@ -93,7 +93,7 @@ NoIRQ1: jsr callmain ; chained it. _exit: pha ; Save the return code on stack - lda #<__IRQFUNC_COUNT__ + lda #<__INTERRUPTOR_COUNT__ beq NoIRQ2 lda IRQInd+1 ldx IRQInd+2