Add missing Reserved ISR Handler function.
This commit is contained in:
parent
5ed922bd20
commit
7cafb959dd
|
@ -246,6 +246,11 @@ __attribute__((interrupt)) void ISR31Handler(INTERRUPT_FRAME* Frame) {
|
||||||
ISR_Common(Frame, 31);
|
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) {
|
__attribute__((interrupt)) void irq0(INTERRUPT_FRAME* Frame) {
|
||||||
IRQ_Common(Frame, 0);
|
IRQ_Common(Frame, 0);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user