project64/Source/Project64-core/N64System/Mips/TranslateVaddr.h

9 lines
278 B
C
Raw Normal View History

2012-12-19 09:30:18 +00:00
#pragma once
__interface CTransVaddr
{
virtual bool TranslateVaddr ( uint32_t VAddr, uint32_t &PAddr) const = 0;
virtual bool ValidVaddr ( uint32_t VAddr ) const = 0;
virtual bool VAddrToRealAddr ( uint32_t VAddr, void * &RealAddress ) const = 0;
2015-01-31 19:27:27 +00:00
};