summaryrefslogtreecommitdiff
path: root/src/kernel/isv.c
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcspace.com>2021-08-24 14:09:29 -0500
committerBrett Weiland <brett_weiland@bpcspace.com>2021-08-24 14:09:29 -0500
commit9b22a6965579ea1867aea291d910c96f386b518b (patch)
treed06dbb9c4708f1cc713bcb115b32ff9bce4cf9b9 /src/kernel/isv.c
parentbad4b0e9bdfee336bfc1c23761408279eaec1558 (diff)
major backup 8.24.21
Diffstat (limited to 'src/kernel/isv.c')
-rw-r--r--src/kernel/isv.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/kernel/isv.c b/src/kernel/isv.c
new file mode 100644
index 0000000..fbc60c0
--- /dev/null
+++ b/src/kernel/isv.c
@@ -0,0 +1,12 @@
+#include <printf.h>
+#include <stdint.h>
+#include <isv.h>
+#include <panic.h>
+
+
+__attribute__((interrupt)) void spurrious_int(void *unused) {
+ printf("Detected spurrious interrupt, doing nothing.\n");
+}
+
+
+