From a396b506105d194bf3d2fe0817d9b42a4c637033 Mon Sep 17 00:00:00 2001 From: Ty Lamontagne Date: Sat, 13 Nov 2021 18:20:02 -0500 Subject: [PATCH] Debugger: Allow access to all of 0xBXXXXXXX --- pcsx2/DebugTools/DebugInterface.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pcsx2/DebugTools/DebugInterface.cpp b/pcsx2/DebugTools/DebugInterface.cpp index 2f513b0e0e..eeedeb33af 100644 --- a/pcsx2/DebugTools/DebugInterface.cpp +++ b/pcsx2/DebugTools/DebugInterface.cpp @@ -635,10 +635,7 @@ bool R5900DebugInterface::isValidAddress(u32 addr) case 0xA: case 0xB: // [ 8000_0000 - BFFF_FFFF ] kernel - // We only need to access the EE kernel (which is 1 MB large) - if (lopart < 0x100000) - return true; - break; + return true; case 0xF: // [ 8000_0000 - BFFF_FFFF ] IOP or kernel stack if (lopart >= 0xfff8000)