mirror of https://github.com/PCSX2/pcsx2.git
IOP Debug: allow reading ROM
This commit is contained in:
parent
58f195fc04
commit
d373cb602d
|
@ -1029,6 +1029,11 @@ bool R3000DebugInterface::isValidAddress(u32 addr)
|
|||
return true;
|
||||
}
|
||||
|
||||
if (addr >= 0x1FC00000 && addr < 0x20000000)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
if (addr < 0x200000)
|
||||
{
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue