mirror of https://github.com/PCSX2/pcsx2.git
DebugInterface: isValidAddres on physical
Mask off the segment bits
This commit is contained in:
parent
df7646fd34
commit
741046079c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue