mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 12:34:39 +08:00 
			
		
		
		
	Merge pull request #441 from Kingcom/CallStack
Add check for valid address to call stack
This commit is contained in:
		
						commit
						72915423c3
					
				@ -38,6 +38,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);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user