Compare commits

..

3 Commits

Author SHA1 Message Date
TheTechnician27 b7bee0bbfb
Merge 826462647d into 0a0f99dd1b 2024-09-18 16:53:45 -04:00
Ty Lamontagne 0a0f99dd1b DebugInterface: Try to show the kernel memory mappings, again 2024-09-18 12:50:48 -04:00
PCSX2 Bot eb5ea6f64e Qt: Update Base Translation 2024-09-18 17:38:09 +02:00
2 changed files with 998 additions and 989 deletions

File diff suppressed because it is too large Load Diff

View File

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