mirror of
https://github.com/cc65/cc65.git
synced 2025-01-01 03:30:20 +00:00
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.
This commit is contained in:
parent
db16a8eb24
commit
673b27cc1b
19
libsrc/nes/irq.s
Normal file
19
libsrc/nes/irq.s
Normal file
@ -0,0 +1,19 @@
|
||||
;
|
||||
; IRQ handling (NES version)
|
||||
;
|
||||
|
||||
.export initirq, doneirq
|
||||
|
||||
; ------------------------------------------------------------------------
|
||||
|
||||
.segment "INIT"
|
||||
|
||||
initirq:
|
||||
rts
|
||||
|
||||
; ------------------------------------------------------------------------
|
||||
|
||||
.code
|
||||
|
||||
doneirq:
|
||||
rts
|
Loading…
Reference in New Issue
Block a user