CPU/Recompiler: Break blocks on invalid instructions

This commit is contained in:
Stenzek
2024-07-11 12:29:34 +10:00
parent 3b9c489787
commit 2ac2ad605e
9 changed files with 117 additions and 117 deletions

View File

@ -610,6 +610,8 @@ void CPU::NewRec::X64Compiler::Flush(u32 flags)
void CPU::NewRec::X64Compiler::Compile_Fallback()
{
WARNING_LOG("Compiling instruction fallback at PC=0x{:08X}, instruction=0x{:08X}", iinfo->pc, inst->bits);
Flush(FLUSH_FOR_INTERPRETER);
cg->call(&CPU::Recompiler::Thunks::InterpretInstruction);