1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-09-09 20:16:27 -05:00
Files
ryujinx/src/ARMeilleure/State/FPException.cs
2023-04-27 23:51:14 +02:00

13 lines
220 B
C#

namespace ARMeilleure.State
{
enum FPException
{
InvalidOp = 0,
DivideByZero = 1,
Overflow = 2,
Underflow = 3,
Inexact = 4,
InputDenorm = 7
}
}