summaryrefslogtreecommitdiff
path: root/include/debug.h
diff options
context:
space:
mode:
authorAleksa Vuckovic <aleksav013@gmail.com>2022-08-03 21:28:15 +0200
committerAleksa Vuckovic <aleksav013@gmail.com>2022-08-03 21:28:15 +0200
commitd4349352a57eb00ce411b4c0542d3207357aecbe (patch)
tree5bf1883ce59cfefedb2e8873e203b381cb7573f3 /include/debug.h
parentc0a8113ba0b7cd6984cc685ec63f79bef3bc9899 (diff)
drawing lines to fb
Diffstat (limited to 'include/debug.h')
-rw-r--r--include/debug.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/debug.h b/include/debug.h
new file mode 100644
index 0000000..1c53148
--- /dev/null
+++ b/include/debug.h
@@ -0,0 +1,11 @@
+#ifndef DEBUG_H
+#define DEBUG_H
+
+#include <stdint.h>
+
+void bochs_breakpoint(void);
+void put_in_r8(uint64_t value);
+void put_in_r9(uint64_t value);
+void put_in_r10(uint64_t value);
+
+#endif