summaryrefslogtreecommitdiff
path: root/stage3/debug.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-27 00:28:56 +0100
committerLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-27 00:35:43 +0100
commit241857a79e1a42e23ec29389862f39c92a5dc93e (patch)
treeaffc1f9d1d6d6c00538fcdbba2a3ed12311b79df /stage3/debug.h
parent4e8e630085463d302ae8b5f6a0dbcec998c51efd (diff)
downloadcuddles-241857a79e1a42e23ec29389862f39c92a5dc93e.tar.xz
move debugger to separate file
Diffstat (limited to 'stage3/debug.h')
-rw-r--r--stage3/debug.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/stage3/debug.h b/stage3/debug.h
new file mode 100644
index 0000000..97bce2b
--- /dev/null
+++ b/stage3/debug.h
@@ -0,0 +1,9 @@
+#ifndef DEBUG_H
+#define DEBUG_H
+
+#include "interrupts.h"
+
+void debug_init();
+void debug_exception(interrupt_frame *frame);
+
+#endif