mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-25 02:29:49 +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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
goto return_site;
|
goto return_site;
|
||||||
|
#endif
|
||||||
|
goto do_interpret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
do_interpret:
|
||||||
for (;;) {
|
for (;;) {
|
||||||
uint32 opcode = vm_read_memory_4(pc());
|
uint32 opcode = vm_read_memory_4(pc());
|
||||||
const instr_info_t *ii = decode(opcode);
|
const instr_info_t *ii = decode(opcode);
|
||||||
|
Loading…
Reference in New Issue
Block a user