2010-05-30 01:54:42 +00:00
|
|
|
class CInterpreterCPU :
|
|
|
|
private R4300iOp
|
2010-05-25 09:15:19 +00:00
|
|
|
{
|
|
|
|
CInterpreterCPU();
|
|
|
|
~CInterpreterCPU();
|
|
|
|
|
2010-05-31 00:21:08 +00:00
|
|
|
public:
|
|
|
|
static void BuildCPU ( void );
|
|
|
|
static void ExecuteCPU ( void );
|
|
|
|
static void ExecuteOps ( int Cycles );
|
2012-09-30 12:24:07 +00:00
|
|
|
static void InPermLoop ( void );
|
2010-05-25 09:15:19 +00:00
|
|
|
private:
|
2010-05-31 00:21:08 +00:00
|
|
|
static R4300iOp::Func * m_R4300i_Opcode;
|
|
|
|
static DWORD m_CountPerOp;
|
|
|
|
};
|