| 1 | /* @title: Debugging */ |
|---|---|
| 2 | #include <stddef.h> |
| 3 | #include <stdint.h> |
| 4 | |
| 5 | void debug_print_registers(); |
| 6 | |
| 7 | void debug_print_stack(); |
| 8 | |
| 9 | void debug_print_memory(void *addr, size_t size); |
| 10 | void debug_print_stack_from(uint64_t *start, size_t max_scan); |
| 11 | #pragma once |
| 12 |