DebugInterface: isValidAddres on physical

Mask off the segment bits
This commit is contained in:
Ziemas 2025-01-24 05:10:15 +01:00 committed by Ty
parent df7646fd34
commit 741046079c
1 changed files with 1 additions and 0 deletions

View File

@ -967,6 +967,7 @@ std::string R3000DebugInterface::disasm(u32 address, bool simplify)
bool R3000DebugInterface::isValidAddress(u32 addr)
{
addr &= 0x1fffffff;
if (addr >= 0x1D000000 && addr < 0x1E000000)
{
return true;