mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-25 17:29:19 +00:00
Fix no JIT & no decode cache case to default to interpretive mode only.
This commit is contained in:
parent
c48515b6d5
commit
561046449a
@ -558,10 +558,12 @@ void powerpc_cpu::execute(uint32 entry)
|
||||
break;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
goto return_site;
|
||||
#endif
|
||||
goto do_interpret;
|
||||
}
|
||||
#endif
|
||||
do_interpret:
|
||||
for (;;) {
|
||||
uint32 opcode = vm_read_memory_4(pc());
|
||||
const instr_info_t *ii = decode(opcode);
|
||||
|
Loading…
Reference in New Issue
Block a user