Create FPExc.cs
This commit is contained in:
parent
577d6eb851
commit
071fee1035
1 changed files with 12 additions and 0 deletions
12
ChocolArm64/State/FPExc.cs
Normal file
12
ChocolArm64/State/FPExc.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
namespace ChocolArm64.State
|
||||
{
|
||||
enum FPExc
|
||||
{
|
||||
InvalidOp = 0,
|
||||
DivideByZero = 1,
|
||||
Overflow = 2,
|
||||
Underflow = 3,
|
||||
Inexact = 4,
|
||||
InputDenorm = 7
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue