Merge pull request #441 from Kingcom/CallStack

Add check for valid address to call stack
pull/8/head
bunnei 10 years ago
commit 72915423c3

@ -39,6 +39,9 @@ void CallstackWidget::OnCPUStepped()
ret_addr = Memory::Read32(addr);
call_addr = ret_addr - 4; //get call address???
if (Memory::GetPointer(call_addr) == nullptr)
break;
/* TODO (mattvail) clean me, move to debugger interface */
u32 insn = Memory::Read32(call_addr);
if (disasm->Decode(insn) == OP_BL)

Loading…
Cancel
Save