mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-29 17:15:40 +00:00
Fixed a bug in MCRFS instruction related to the VXSOFT, VXSQRT, and VXCVI bits. Thanks to Spindizzi.
This commit is contained in:
parent
0efd4dac39
commit
21f813ad3e
|
@ -2521,7 +2521,7 @@ static void ppc_mcrfs(UINT32 op)
|
||||||
ppc.fpscr &= ~0x00080000;
|
ppc.fpscr &= ~0x00080000;
|
||||||
break;
|
break;
|
||||||
case 5: // VXSOFT, VXSQRT, VXCVI
|
case 5: // VXSOFT, VXSQRT, VXCVI
|
||||||
ppc.fpscr &= ~0x00000e00;
|
ppc.fpscr &= ~0x00000700;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue