mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 04:24:56 +00: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
1 changed files with 6 additions and 0 deletions
|
@ -499,11 +499,17 @@ void Interpreter::dcbst(UGeckoInstruction inst)
|
|||
|
||||
void Interpreter::dcbt(UGeckoInstruction inst)
|
||||
{
|
||||
if (HID0.NOOPTI)
|
||||
return;
|
||||
|
||||
// TODO: Implement some sort of L2 emulation.
|
||||
}
|
||||
|
||||
void Interpreter::dcbtst(UGeckoInstruction inst)
|
||||
{
|
||||
if (HID0.NOOPTI)
|
||||
return;
|
||||
|
||||
// TODO: Implement some sort of L2 emulation.
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue