Skip to content

Commit

Permalink
interp: Handle flush prefixes slightly better.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Mar 31, 2019
1 parent d40ac04 commit db28c61
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Core/MIPS/MIPSIntVFPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,11 @@ namespace MIPSInt

void Int_Vflush(MIPSOpcode op)
{
// DEBUG_LOG(CPU,"vflush");
VERBOSE_LOG(CPU, "vflush");
PC += 4;
// Anything with 0xFC000000 is a nop, but only 0xFFFF0000 retains prefixes.
if ((op & 0xFFFF0000) != 0xFFFF0000)
EatPrefixes();
}

void Int_VV2Op(MIPSOpcode op)
Expand Down

0 comments on commit db28c61

Please sign in to comment.