CPU/Recompiler: Don't require fallback for GTE instructions

This commit is contained in:
Connor McLaughlin
2019-12-11 21:54:08 +10:00
parent a6dab97928
commit a5afb250ea
5 changed files with 82 additions and 0 deletions

View File

@ -23,6 +23,9 @@ public:
static void UpdateLoadDelay(Core* cpu);
static void RaiseException(Core* cpu, u8 excode);
static void RaiseAddressException(Core* cpu, u32 address, bool store, bool branch);
static void ExecuteGTEInstruction(Core* cpu, u32 instruction_bits);
static u32 ReadGTERegister(Core* cpu, u32 reg);
static void WriteGTERegister(Core* cpu, u32 reg, u32 value);
};
class ASMFunctions