Compare commits

..

1 Commits

Author SHA1 Message Date
TheTechnician27 447f1f820c
Merge 826462647d into 1d449e9675 2024-09-18 08:44:37 +07:00
2 changed files with 989 additions and 998 deletions

File diff suppressed because it is too large Load Diff

View File

@ -828,16 +828,12 @@ bool R5900DebugInterface::isValidAddress(u32 addr)
return true;
break;
case 8:
case 0xA:
if(lopart <= 0xFFFFF)
return true;
break;
case 9:
case 0xA:
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)