Keep track of ranges that have emuhack ops.

So that we can invalidate them smarter.
This commit is contained in:
Unknown W. Brackets
2014-07-05 16:25:16 -07:00
parent 2910f7e7a2
commit 09b9d2ad81
6 changed files with 54 additions and 7 deletions
+4
View File
@@ -159,6 +159,10 @@ bool IsVRAMAddress(const u32 address) {
return ((address & 0x3F800000) == 0x04000000);
}
bool IsScratchpadAddress(const u32 address) {
return (address & 0xBFFF0000) == 0x00010000;
}
u8 Read_U8(const u32 _Address)
{
u8 _var = 0;