mirror of
https://github.com/libretro/Play-.git
synced 2024-12-04 07:20:56 +00:00
e83a427c11
Added a real COP_SCU_Reflection file. git-svn-id: http://svn.purei.org/purei/trunk@821 b36208d7-6611-0410-8bec-b1987f11c4a2
18 lines
604 B
C++
18 lines
604 B
C++
#ifndef _MIPS_ARCHITECTURE_H_
|
|
#define _MIPS_ARCHITECTURE_H_
|
|
|
|
#include "MIPSInstructionFactory.h"
|
|
|
|
class CMIPSArchitecture : public CMIPSInstructionFactory
|
|
{
|
|
public:
|
|
CMIPSArchitecture(MIPS_REGSIZE);
|
|
virtual ~CMIPSArchitecture();
|
|
virtual void GetInstructionMnemonic(CMIPS*, uint32, uint32, char*, unsigned int) = 0;
|
|
virtual void GetInstructionOperands(CMIPS*, uint32, uint32, char*, unsigned int) = 0;
|
|
virtual MIPS_BRANCH_TYPE IsInstructionBranch(CMIPS*, uint32, uint32) = 0;
|
|
virtual uint32 GetInstructionEffectiveAddress(CMIPS*, uint32, uint32) = 0;
|
|
};
|
|
|
|
#endif
|