From d373cb602db0ac756ac141494e03543c185fa471 Mon Sep 17 00:00:00 2001 From: Ziemas Date: Fri, 21 Mar 2025 22:58:44 +0100 Subject: [PATCH] IOP Debug: allow reading ROM --- pcsx2/DebugTools/DebugInterface.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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;