PowerPC: Remove FPSCR macro.

This commit is contained in:
Admiral H. Curtiss
2023-01-09 22:26:12 +01:00
parent 2f3187eba9
commit 4b6b8fa1ae
9 changed files with 215 additions and 162 deletions

View File

@ -447,7 +447,7 @@ static void ReadRegister()
wbe32hex(reply, PowerPC::ppcState.spr[SPR_XER]);
break;
case 70:
wbe32hex(reply, FPSCR.Hex);
wbe32hex(reply, PowerPC::ppcState.fpscr.Hex);
break;
case 87:
wbe32hex(reply, PowerPC::ppcState.spr[SPR_PVR]);
@ -659,7 +659,7 @@ static void WriteRegister()
PowerPC::ppcState.spr[SPR_XER] = re32hex(bufptr);
break;
case 70:
FPSCR.Hex = re32hex(bufptr);
PowerPC::ppcState.fpscr.Hex = re32hex(bufptr);
break;
case 87:
PowerPC::ppcState.spr[SPR_PVR] = re32hex(bufptr);