Fixed a bug in MCRFS instruction related to the VXSOFT, VXSQRT, and VXCVI bits. Thanks to Spindizzi.

This commit is contained in:
Bart Trzynadlowski 2017-08-16 00:58:39 +00:00
parent 0efd4dac39
commit 21f813ad3e

View file

@ -2521,7 +2521,7 @@ static void ppc_mcrfs(UINT32 op)
ppc.fpscr &= ~0x00080000;
break;
case 5: // VXSOFT, VXSQRT, VXCVI
ppc.fpscr &= ~0x00000e00;
ppc.fpscr &= ~0x00000700;
break;
default:
break;