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

21 lines
473 B
C
Raw Normal View History

2012-12-19 09:30:18 +00:00
#pragma once
2015-12-06 09:59:58 +00:00
#include <Project64-core/N64System/Interpreter/InterpreterOps.h>
class CInterpreterCPU :
2015-11-14 22:08:30 +00:00
private R4300iOp
{
public:
2015-11-14 22:08:30 +00:00
static void BuildCPU();
static void ExecuteCPU();
static void ExecuteOps(int32_t Cycles);
2015-11-14 22:08:30 +00:00
static void InPermLoop();
2022-10-10 00:22:17 +00:00
private:
CInterpreterCPU();
2022-10-10 00:22:17 +00:00
CInterpreterCPU(const CInterpreterCPU &);
CInterpreterCPU & operator=(const CInterpreterCPU &);
2012-11-19 11:06:01 +00:00
2015-11-14 22:08:30 +00:00
static R4300iOp::Func * m_R4300i_Opcode;
};