29 lines
1.3 KiB
C++
29 lines
1.3 KiB
C++
/****************************************************************************
|
|
* *
|
|
* Project 64 - A Nintendo 64 emulator. *
|
|
* http://www.pj64-emu.com/ *
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
* *
|
|
* License: *
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
* *
|
|
****************************************************************************/
|
|
#pragma once
|
|
|
|
class CInterpreterCPU :
|
|
private R4300iOp
|
|
{
|
|
public:
|
|
static void BuildCPU ( void );
|
|
static void ExecuteCPU ( void );
|
|
static void ExecuteOps ( int Cycles );
|
|
static void InPermLoop ( void );
|
|
|
|
private:
|
|
CInterpreterCPU(void); // Disable default constructor
|
|
CInterpreterCPU(const CInterpreterCPU&); // Disable copy constructor
|
|
CInterpreterCPU& operator=(const CInterpreterCPU&); // Disable assignment
|
|
|
|
static R4300iOp::Func * m_R4300i_Opcode;
|
|
};
|