Skip to content

Commit

Permalink
DebugInterface: Try to show the kernel memory mappings, again
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes committed Sep 18, 2024
1 parent eb5ea6f commit 0a0f99d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pcsx2/DebugTools/DebugInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -828,12 +828,16 @@ bool R5900DebugInterface::isValidAddress(u32 addr)
return true;
break;
case 8:
case 9:
case 0xA:
if(lopart <= 0xFFFFF)
return true;
break;
case 9:
case 0xB:
// [ 8000_0000 - BFFF_FFFF ] kernel
if (lopart >= 0xFC00000)
return true;
break;
case 0xF:
// [ 8000_0000 - BFFF_FFFF ] IOP or kernel stack
if (lopart >= 0xfff8000)
Expand Down

0 comments on commit 0a0f99d

Please sign in to comment.