Debugger: Allow access to all of 0xBXXXXXXX

This commit is contained in:
Ty Lamontagne 2021-11-13 18:20:02 -05:00 committed by refractionpcsx2
parent 67299fcd9f
commit a396b50610
1 changed files with 1 additions and 4 deletions

View File

@ -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)