mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:58:40 +00:00
13 lines
214 B
C#
13 lines
214 B
C#
|
namespace ChocolArm64.State
|
||
|
{
|
||
|
enum FPExc
|
||
|
{
|
||
|
InvalidOp = 0,
|
||
|
DivideByZero = 1,
|
||
|
Overflow = 2,
|
||
|
Underflow = 3,
|
||
|
Inexact = 4,
|
||
|
InputDenorm = 7
|
||
|
}
|
||
|
}
|