1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00
cc65/libsrc/nes/irq.s
Oliver Schmidt 673b27cc1b Added empty IRQ backend.
The driver kernels all require IRQ handling even if the actual drivers don't make use of it. So in order to successfully link a NES program using the joystick and/or TGI driver there has to be at least a "dummy" IRQ backend.
2015-07-22 11:36:54 +02:00

20 lines
302 B
ArmAsm

;
; IRQ handling (NES version)
;
.export initirq, doneirq
; ------------------------------------------------------------------------
.segment "INIT"
initirq:
rts
; ------------------------------------------------------------------------
.code
doneirq:
rts