Ryujinx-uplift/src/ARMeilleure/State/FPRoundingMode.cs
2023-04-27 23:51:14 +02:00

12 lines
288 B
C#

namespace ARMeilleure.State
{
public enum FPRoundingMode
{
ToNearest = 0, // With ties to even.
TowardsPlusInfinity = 1,
TowardsMinusInfinity = 2,
TowardsZero = 3,
ToNearestAway = 4 // With ties to away.
}
}