#pragma once #include struct stackframe { struct stackframe *ebp; uint32_t eip; }; void print_stack(void);