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
commit 4284952538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

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