Skip to content
Permalink
Browse files
Merge pull request #6919 from lioncash/nop
Interpreter_LoadStore: No-op dcbt and dcbtst if HID0.NOOPTI is set
  • Loading branch information
leoetlino committed May 20, 2018
2 parents 5ce1b83 + d05c1b2 commit 4284952
Showing 1 changed file 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.
}

0 comments on commit 4284952

Please sign in to comment.