Add missing Reserved ISR Handler function.

This commit is contained in:
Curle 2019-07-24 21:49:49 +01:00
parent 5ed922bd20
commit 7cafb959dd

View File

@ -246,6 +246,11 @@ __attribute__((interrupt)) void ISR31Handler(INTERRUPT_FRAME* Frame) {
ISR_Common(Frame, 31);
}
__attribute__((interrupt)) void ReservedISRHandler(INTERRUPT_FRAME* Frame) {
ISR_Common(Frame, 33); // if < 32, isn't handled.
// Effectively disables this ISR.
}
__attribute__((interrupt)) void irq0(INTERRUPT_FRAME* Frame) {
IRQ_Common(Frame, 0);