aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/State/FPException.cs
blob: e24e07af182bd4ab1cf74b32504bfa5350e0a08d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace ARMeilleure.State
{
    enum FPException
    {
        InvalidOp    = 0,
        DivideByZero = 1,
        Overflow     = 2,
        Underflow    = 3,
        Inexact      = 4,
        InputDenorm  = 7
    }
}