Video_Software: Add some debugging logs for PE perf queries
This commit is contained in:
parent
4607ebea2a
commit
87d8feb53d
|
@ -79,6 +79,11 @@ void Read16(u16& _uReturnValue, const u32 _iAddress)
|
||||||
|
|
||||||
if (address <= 0x2e)
|
if (address <= 0x2e)
|
||||||
_uReturnValue = ((u16*)&pereg)[address >> 1];
|
_uReturnValue = ((u16*)&pereg)[address >> 1];
|
||||||
|
|
||||||
|
if (address > 0x16)
|
||||||
|
{
|
||||||
|
ERROR_LOG(PIXELENGINE, "Read from address %#08x, returning %#08x\n", address, _uReturnValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Write32(const u32 _iValue, const u32 _iAddress)
|
void Write32(const u32 _iValue, const u32 _iAddress)
|
||||||
|
|
Loading…
Reference in New Issue