make FPSCR.RN an enum

This commit is contained in:
Shawn Hoffman
2021-07-17 18:55:06 -07:00
parent d7a5558dc5
commit 197075293d
5 changed files with 11 additions and 21 deletions

View File

@ -7,10 +7,10 @@
// Generic, do nothing
namespace FPURoundMode
{
void SetRoundMode(int mode)
void SetRoundMode(RoundMode mode)
{
}
void SetSIMDMode(int rounding_mode, bool non_ieee_mode)
void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode)
{
}
void SaveSIMDState()