mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
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…
x
Reference in New Issue
Block a user