mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-25 23:25: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;
|
||||
break;
|
||||
case 5: // VXSOFT, VXSQRT, VXCVI
|
||||
ppc.fpscr &= ~0x00000e00;
|
||||
ppc.fpscr &= ~0x00000700;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue