Skip to content
Permalink
Browse files
Merge pull request #6956 from lioncash/flag
Interpreter_FPUtils: Set the FPSCR.VX bit if any invalid operation exception bits are set
  • Loading branch information
leoetlino committed May 25, 2018
2 parents 9d17857 + dfea5cb commit 56217fd
Showing 1 changed file with 2 additions and 0 deletions.
@@ -31,7 +31,9 @@ inline void SetFPException(u32 mask)
{
FPSCR.FX = 1;
}

FPSCR.Hex |= mask;
FPSCR.VX = (FPSCR.Hex & FPSCR_VX_ANY) != 0;
}

inline void SetFI(int FI)

0 comments on commit 56217fd

Please sign in to comment.