mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
47 lines
628 B
ArmAsm
47 lines
628 B
ArmAsm
|
;
|
||
|
; IRQ handling (Lynx version)
|
||
|
;
|
||
|
|
||
|
.export initirq, doneirq
|
||
|
.import callirq
|
||
|
|
||
|
.include "lynx.inc"
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
|
||
|
.segment "INIT"
|
||
|
|
||
|
initirq:
|
||
|
lda #<IRQStub
|
||
|
ldx #>IRQStub
|
||
|
sei
|
||
|
sta INTVECTL
|
||
|
stx INTVECTH
|
||
|
cli
|
||
|
rts
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
|
||
|
.code
|
||
|
|
||
|
doneirq:
|
||
|
; as Lynx is a console there is not much point in releasing the IRQ
|
||
|
rts
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
|
||
|
.segment "LOWCODE"
|
||
|
|
||
|
IRQStub:
|
||
|
phy
|
||
|
phx
|
||
|
pha
|
||
|
cld
|
||
|
jsr callirq
|
||
|
lda INTSET
|
||
|
sta INTRST
|
||
|
pla
|
||
|
plx
|
||
|
ply
|
||
|
rti
|