diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp index cab27b3dd7..de4f453654 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp @@ -424,19 +424,36 @@ void Interpreter::fresx(UGeckoInstruction inst) void Interpreter::frsqrtex(UGeckoInstruction inst) { - double b = rPS0(inst.FB); + const double b = rPS0(inst.FB); + const double result = Common::ApproximateReciprocalSquareRoot(b); if (b < 0.0) { SetFPException(FPSCR_VXSQRT); + + if (FPSCR.VE == 0) + PowerPC::UpdateFPRF(result); } else if (b == 0.0) { SetFPException(FPSCR_ZX); + + if (FPSCR.ZE == 0) + PowerPC::UpdateFPRF(result); + } + else if (Common::IsSNAN(b)) + { + SetFPException(FPSCR_VXSNAN); + + if (FPSCR.VE == 0) + PowerPC::UpdateFPRF(result); + } + else + { + PowerPC::UpdateFPRF(result); } - rPS0(inst.FD) = Common::ApproximateReciprocalSquareRoot(b); - PowerPC::UpdateFPRF(rPS0(inst.FD)); + rPS0(inst.FD) = result; if (inst.Rc) Helper_UpdateCR1();