diff options
Diffstat (limited to 'ARMeilleure/State/FPException.cs')
-rw-r--r-- | ARMeilleure/State/FPException.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ARMeilleure/State/FPException.cs b/ARMeilleure/State/FPException.cs new file mode 100644 index 00000000..e24e07af --- /dev/null +++ b/ARMeilleure/State/FPException.cs @@ -0,0 +1,12 @@ +namespace ARMeilleure.State +{ + enum FPException + { + InvalidOp = 0, + DivideByZero = 1, + Overflow = 2, + Underflow = 3, + Inexact = 4, + InputDenorm = 7 + } +} |