mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-07 12:05:52 +00:00
CPU/Recompiler: Remove load delay flag from lwc2
Shouldn't make any difference since it's not a register write.
This commit is contained in:
parent
826f10239c
commit
7eb7ad684c
@ -1314,7 +1314,7 @@ void CPU::Recompiler::Recompiler::CompileInstruction()
|
||||
}
|
||||
break;
|
||||
|
||||
case InstructionOp::lwc2: CompileLoadStoreTemplate(&Recompiler::Compile_lwc2, MemoryAccessSize::Word, false, false, TF_READS_S | TF_LOAD_DELAY); break;
|
||||
case InstructionOp::lwc2: CompileLoadStoreTemplate(&Recompiler::Compile_lwc2, MemoryAccessSize::Word, false, false, TF_READS_S); break;
|
||||
case InstructionOp::swc2: CompileLoadStoreTemplate(&Recompiler::Compile_swc2, MemoryAccessSize::Word, true, false, TF_GTE_STALL | TF_READS_S); SpecExec_swc2(); break;
|
||||
|
||||
// swc0/lwc0/cop1/cop3 are essentially no-ops
|
||||
|
Loading…
x
Reference in New Issue
Block a user