Bus: Stub out 0x1F802080

Used by some homebrew.
This commit is contained in:
Stenzek 2025-04-11 22:18:25 +10:00
parent fca250257c
commit c192bd798b
No known key found for this signature in database
1 changed files with 5 additions and 0 deletions

View File

@ -1576,6 +1576,11 @@ u32 Bus::EXP2ReadHandler(VirtualMemoryAddress address)
// nocash expansion area
value = UINT32_C(0xFFFFFFFF);
}
else if (offset == 0x80)
{
// pcsx_present()
value = UINT32_C(0xFFFFFFFF);
}
else
{
WARNING_LOG("EXP2 read: 0x{:08X}", address);