diff options
| author | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-08-03 21:28:15 +0200 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-08-03 21:28:15 +0200 |
| commit | d4349352a57eb00ce411b4c0542d3207357aecbe (patch) | |
| tree | 5bf1883ce59cfefedb2e8873e203b381cb7573f3 /include/debug.h | |
| parent | c0a8113ba0b7cd6984cc685ec63f79bef3bc9899 (diff) | |
drawing lines to fb
Diffstat (limited to 'include/debug.h')
| -rw-r--r-- | include/debug.h | 11 |
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 |
