CPU/Recompiler: Implement j/jal/jr/jalr/beq/bne/bgtz/blez

This commit is contained in:
Connor McLaughlin
2019-11-22 21:41:10 +10:00
parent 44676a6810
commit 167e2a3454
8 changed files with 287 additions and 58 deletions

View File

@ -21,6 +21,7 @@ public:
static bool WriteMemoryWord(Core* cpu, u32 address, u32 value);
static bool InterpretInstruction(Core* cpu);
static void UpdateLoadDelay(Core* cpu);
static void RaiseAddressException(Core* cpu, u32 address, bool store, bool branch);
};
class ASMFunctions