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

21 lines
596 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();
2017-08-18 05:08:22 +00:00
private:
2015-11-14 22:08:30 +00:00
CInterpreterCPU(); // Disable default constructor
CInterpreterCPU(const CInterpreterCPU&); // Disable copy constructor
CInterpreterCPU& operator=(const CInterpreterCPU&); // Disable assignment
2012-11-19 11:06:01 +00:00
2015-11-14 22:08:30 +00:00
static R4300iOp::Func * m_R4300i_Opcode;
};