Create FPExc.cs

This commit is contained in:
LDj3SNuD 2018-10-22 23:59:03 +02:00 committed by GitHub
parent 577d6eb851
commit 071fee1035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,12 @@
namespace ChocolArm64.State
{
enum FPExc
{
InvalidOp = 0,
DivideByZero = 1,
Overflow = 2,
Underflow = 3,
Inexact = 4,
InputDenorm = 7
}
}