[Zion] Print RBP on GP Fault.

This commit is contained in:
Drew Galbraith 2023-12-08 14:30:24 -08:00
parent d90c8eb1ef
commit d7c1022b7f
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ extern "C" void interrupt_protection_fault(InterruptFrame* frame) {
dbgln("RIP: {x}", frame->rip);
dbgln("RAX: {x}, RBX: {x}, RCX: {x}, RDX: {x}", frame->rax, frame->rbx,
frame->rcx, frame->rdx);
dbgln("RSP: {x}", frame->rsp);
dbgln("RSP: {x}, RBP: {x}", frame->rsp, frame->rbp);
StackUnwind(frame->rbp);
if (IsUserSpace(frame->rip)) {