Merge pull request #6919 from lioncash/nop
Interpreter_LoadStore: No-op dcbt and dcbtst if HID0.NOOPTI is set
This commit is contained in:
commit
4284952538
|
@ -499,11 +499,17 @@ void Interpreter::dcbst(UGeckoInstruction inst)
|
||||||
|
|
||||||
void Interpreter::dcbt(UGeckoInstruction inst)
|
void Interpreter::dcbt(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
|
if (HID0.NOOPTI)
|
||||||
|
return;
|
||||||
|
|
||||||
// TODO: Implement some sort of L2 emulation.
|
// TODO: Implement some sort of L2 emulation.
|
||||||
}
|
}
|
||||||
|
|
||||||
void Interpreter::dcbtst(UGeckoInstruction inst)
|
void Interpreter::dcbtst(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
|
if (HID0.NOOPTI)
|
||||||
|
return;
|
||||||
|
|
||||||
// TODO: Implement some sort of L2 emulation.
|
// TODO: Implement some sort of L2 emulation.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue