blob: e6a9871237815e67fb52765c54a1a9dd84a714a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <kernel/isr.h>
#include <kernel/panic.h>
#include <kernel/tty.h>
#include <stdbool.h>
#include <stdint.h>
bool isr_test_interrupt_called = false;
__attribute__((interrupt))
void isr_double_fault(struct interrupt_frame *frame) {
tty_const("#DF");
panic();
}
__attribute__((interrupt))
void isr_test_interrupt(struct interrupt_frame *frame) {
isr_test_interrupt_called = true;
}
|