mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #1056 from phire/IsMMIOAddress
Fix IsMMIOAddress Check.
This commit is contained in:
@ -40,7 +40,7 @@ const u32 NUM_MMIOS = NUM_BLOCKS * BLOCK_SIZE;
|
|||||||
// interface.
|
// interface.
|
||||||
inline bool IsMMIOAddress(u32 address)
|
inline bool IsMMIOAddress(u32 address)
|
||||||
{
|
{
|
||||||
return ((address & 0xE0000000) == 0xC0000000) &&
|
return ((address & 0xFE7F0000) == 0xCC000000) &&
|
||||||
((address & 0x0000FFFF) != 0x00008000);
|
((address & 0x0000FFFF) != 0x00008000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user