1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Merge pull request #121 from groessler/something_to_pull

small optimization
This commit is contained in:
Oliver Schmidt 2014-05-27 08:50:56 +02:00
commit 3e9484632e

View File

@ -23,8 +23,7 @@ initirq:
lda #7
ldy #<IRQStub
ldx #>IRQStub
jsr SETVBV
rts
jmp SETVBV
; ------------------------------------------------------------------------
@ -34,8 +33,7 @@ doneirq:
lda #7
ldy IRQInd+1
ldx IRQInd+2
jsr SETVBV
rts
jmp SETVBV
; ------------------------------------------------------------------------