We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS
Non-Maskable Interrupt: Difference between revisions
From SnesLab
(→See Also: already mentioned BRK) |
(linkify Ricoh) |
||
Line 1: | Line 1: | ||
A '''non-maskable interrupt''' (NMI) is an interrupt that cannot be ignored. The [[PPU]] normally generates an NMI at the beginning of the [[vertical blanking period]], which is received by the Ricoh CPU. This is the only hardware NMI source on the SNES.<sup>[2]</sup> | A '''non-maskable interrupt''' (NMI) is an interrupt that cannot be ignored. The [[PPU]] normally generates an NMI at the beginning of the [[vertical blanking period]], which is received by the [[Ricoh]] CPU. This is the only hardware NMI source on the SNES.<sup>[2]</sup> | ||
[[BRK]] causes a software NMI. | [[BRK]] causes a software NMI. |
Revision as of 14:45, 21 July 2024
A non-maskable interrupt (NMI) is an interrupt that cannot be ignored. The PPU normally generates an NMI at the beginning of the vertical blanking period, which is received by the Ricoh CPU. This is the only hardware NMI source on the SNES.[2]
BRK causes a software NMI.
NMIs have higher priority than IRQs, but lower priority than Reset.
See Also
References
- 7.19 Interrupt Priorities, page 53: https://www.westerndesigncenter.com/wdc/documentation/w65c816s.pdf
- https://problemkaputt.de/fullsnes.htm#snesppuinterrupts
External Links
- snes9x implementation of NMI: https://github.com/snes9xgit/snes9x/blob/master/cpuops.cpp#L2663