mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
irq.s added
This commit is contained in:
parent
7107019d6f
commit
7b74264720
59
libsrc/telestrat/irq.s
Normal file
59
libsrc/telestrat/irq.s
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
;
|
||||||
|
; IRQ handling (Oric version)
|
||||||
|
;
|
||||||
|
|
||||||
|
.export initirq, doneirq
|
||||||
|
.import callirq
|
||||||
|
|
||||||
|
.include "telestrat.inc"
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
.segment "ONCE"
|
||||||
|
|
||||||
|
initirq:
|
||||||
|
lda IRQVec
|
||||||
|
ldx IRQVec+1
|
||||||
|
sta IRQInd+1
|
||||||
|
stx IRQInd+2
|
||||||
|
lda #<IRQStub
|
||||||
|
ldx #>IRQStub
|
||||||
|
jmp setvec
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
.code
|
||||||
|
|
||||||
|
doneirq:
|
||||||
|
lda IRQInd+1
|
||||||
|
ldx IRQInd+2
|
||||||
|
setvec: sei
|
||||||
|
sta IRQVec
|
||||||
|
stx IRQVec+1
|
||||||
|
cli
|
||||||
|
rts
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
.segment "LOWCODE"
|
||||||
|
|
||||||
|
IRQStub:
|
||||||
|
cld ; Just to be sure
|
||||||
|
pha
|
||||||
|
txa
|
||||||
|
pha
|
||||||
|
tya
|
||||||
|
pha
|
||||||
|
jsr callirq ; Call the functions
|
||||||
|
pla
|
||||||
|
tay
|
||||||
|
pla
|
||||||
|
tax
|
||||||
|
pla
|
||||||
|
jmp IRQInd ; Jump to the saved IRQ vector
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
.data
|
||||||
|
|
||||||
|
IRQInd: jmp $0000
|
Loading…
x
Reference in New Issue
Block a user