Dynarec ground work

This commit is contained in:
CocoSimone
2022-12-29 23:05:11 +01:00
parent 6b5ae0c8d5
commit 408e369df5
5 changed files with 910 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ inline void CheckCompareInterrupt(MI& mi, Registers& regs) {
}
}
void Interpreter::Step(Registers& regs, Mem& mem) {
void Interpreter::Step(Mem& mem, Registers& regs) {
regs.gpr[0] = 0;
CheckCompareInterrupt(mem.mmio.mi, regs);