10 lines
122 B
C
10 lines
122 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct stackframe {
|
|
struct stackframe *ebp;
|
|
uint32_t eip;
|
|
};
|
|
|
|
void print_stack(void); |