project64/Source/Project64/N64 System/Interpreter/Interpreter CPU.h

16 lines
301 B
C++

class CInterpreterCPU :
private R4300iOp
{
CInterpreterCPU();
~CInterpreterCPU();
public:
static void BuildCPU ( void );
static void ExecuteCPU ( void );
static void ExecuteOps ( int Cycles );
private:
static R4300iOp::Func * m_R4300i_Opcode;
static DWORD m_CountPerOp;
};