mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
22 lines
278 B
ArmAsm
22 lines
278 B
ArmAsm
;
|
|
; NMI handling (Gamate version)
|
|
;
|
|
.export NMIStub
|
|
|
|
.segment "INIT"
|
|
|
|
NMIStub:
|
|
; A is saved by the BIOS
|
|
;pha
|
|
;txa
|
|
;pha
|
|
;tya
|
|
;pha
|
|
|
|
;pla
|
|
;tay
|
|
;pla
|
|
;tax
|
|
;pla
|
|
rts
|