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

17 lines
478 B
C
Raw Normal View History

class CInterpreterCPU :
private R4300iOp
{
public:
static void BuildCPU ( void );
static void ExecuteCPU ( void );
static void ExecuteOps ( int Cycles );
static void InPermLoop ( void );
2012-11-19 11:06:01 +00:00
private:
2012-11-19 11:06:01 +00:00
CInterpreterCPU(void); // Disable default constructor
CInterpreterCPU(const CInterpreterCPU&); // Disable copy constructor
CInterpreterCPU& operator=(const CInterpreterCPU&); // Disable assignment
static R4300iOp::Func * m_R4300i_Opcode;
};