Merge pull request #6919 from lioncash/nop

Interpreter_LoadStore: No-op dcbt and dcbtst if HID0.NOOPTI is set
This commit is contained in:
Léo Lam
2018-05-20 20:33:38 +02:00
committed by GitHub

View File

@ -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.
} }