mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
Bus: Ignore reads to nocash EXP2 area
This commit is contained in:
parent
b2d224abfc
commit
f14270fc4b
|
@ -588,6 +588,11 @@ ALWAYS_INLINE static TickCount DoEXP2Access(u32 offset, u32& value)
|
||||||
{
|
{
|
||||||
value = 0x04 | 0x08;
|
value = 0x04 | 0x08;
|
||||||
}
|
}
|
||||||
|
else if (offset >= 0x60 && offset <= 0x67)
|
||||||
|
{
|
||||||
|
// nocash expansion area
|
||||||
|
value = UINT32_C(0xFFFFFFFF);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Log_WarningPrintf("EXP2 read: 0x%08X", EXP2_BASE | offset);
|
Log_WarningPrintf("EXP2 read: 0x%08X", EXP2_BASE | offset);
|
||||||
|
|
Loading…
Reference in a new issue