42_KFS/headers/debug.h

10 lines
122 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
struct stackframe {
struct stackframe *ebp;
uint32_t eip;
};
2024-09-22 03:54:56 -04:00
void print_stack(void);