mirror of https://github.com/PCSX2/pcsx2.git
Debugger: Allow access to all of 0xBXXXXXXX
This commit is contained in:
parent
67299fcd9f
commit
a396b50610
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue