mirror of
https://github.com/libretro/Play-.git
synced 2024-12-13 11:35:30 +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
490 B
C++
18 lines
490 B
C++
#ifndef _MIPSCOPROCESSOR_H_
|
|
#define _MIPSCOPROCESSOR_H_
|
|
|
|
#include "MIPSInstructionFactory.h"
|
|
|
|
class CMIPSCoprocessor : public CMIPSInstructionFactory
|
|
{
|
|
public:
|
|
CMIPSCoprocessor(MIPS_REGSIZE);
|
|
virtual ~CMIPSCoprocessor();
|
|
virtual void GetInstruction(uint32, char*) = 0;
|
|
virtual void GetArguments(uint32, uint32, char*) = 0;
|
|
virtual uint32 GetEffectiveAddress(uint32, uint32) = 0;
|
|
virtual MIPS_BRANCH_TYPE IsBranch(uint32) = 0;
|
|
};
|
|
|
|
#endif
|