[Zion] Print RBP on GP Fault.
This commit is contained in:
parent
d90c8eb1ef
commit
d7c1022b7f
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue