Merge branch 'main' of git.chauvet.pro:starnakin/42_KFS

This commit is contained in:
2024-09-17 13:58:10 +02:00
2 changed files with 70 additions and 1 deletions

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->ebp);
kprintf(0, "fn: %d\n", stack->eip);
stack = stack->ebp;
}
}