diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-27 00:28:56 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-27 00:35:43 +0100 |
commit | 241857a79e1a42e23ec29389862f39c92a5dc93e (patch) | |
tree | affc1f9d1d6d6c00538fcdbba2a3ed12311b79df /stage3/debug.h | |
parent | 4e8e630085463d302ae8b5f6a0dbcec998c51efd (diff) | |
download | cuddles-241857a79e1a42e23ec29389862f39c92a5dc93e.tar.xz |
move debugger to separate file
Diffstat (limited to 'stage3/debug.h')
-rw-r--r-- | stage3/debug.h | 9 |
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 |