project64/Source/Project64-core/N64System/Interpreter/InterpreterCPU.h

21 lines
471 B
C++

#pragma once
#include <Project64-core/N64System/Interpreter/InterpreterOps.h>
class CInterpreterCPU :
private R4300iOp
{
public:
static void BuildCPU();
static void ExecuteCPU();
static void ExecuteOps(int32_t Cycles);
static void InPermLoop();
private:
CInterpreterCPU();
CInterpreterCPU(const CInterpreterCPU&);
CInterpreterCPU& operator=(const CInterpreterCPU&);
static R4300iOp::Func * m_R4300i_Opcode;
};