This commit is contained in:
starnakin 2024-09-17 13:19:56 +02:00
parent 2f14074e4b
commit e314ff97f7

View File

@ -7,7 +7,7 @@ void print_stack(void)
(struct stackframe *)__builtin_frame_address(0);
while (stack) {
kprintf(0, "stack->ebp: %d\n", stack->eip);
kprintf(0, "fn: %d\n", stack->eip);
stack = stack->ebp;
}
}