diff --git a/pcsx2/DebugTools/DebugInterface.cpp b/pcsx2/DebugTools/DebugInterface.cpp index 99b4b7ab8f..403208f6f2 100644 --- a/pcsx2/DebugTools/DebugInterface.cpp +++ b/pcsx2/DebugTools/DebugInterface.cpp @@ -1029,6 +1029,11 @@ bool R3000DebugInterface::isValidAddress(u32 addr) return true; } + if (addr >= 0x1FC00000 && addr < 0x20000000) + { + return true; + } + if (addr < 0x200000) { return true;