diff options
author | dzwdz | 2021-07-09 16:13:38 +0200 |
---|---|---|
committer | dzwdz | 2021-07-09 16:13:38 +0200 |
commit | 79dbeb367cc7b39e965c052ebb62076a2118c54c (patch) | |
tree | 23651a0ea6abbe9d9cbc4968a35e0ab317911185 /kernel/isr.h | |
parent | 9b851331995c84f9548eba05e51b47656cb83deb (diff) |
basic interrupt support
Diffstat (limited to 'kernel/isr.h')
-rw-r--r-- | kernel/isr.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/isr.h b/kernel/isr.h new file mode 100644 index 0000000..7230986 --- /dev/null +++ b/kernel/isr.h @@ -0,0 +1,6 @@ +#pragma once + +struct interrupt_frame; + +__attribute__((interrupt)) +void isr_double_fault(struct interrupt_frame *frame); |