mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-09 20:16:27 -05:00
13 lines
220 B
C#
13 lines
220 B
C#
namespace ARMeilleure.State
|
|
{
|
|
enum FPException
|
|
{
|
|
InvalidOp = 0,
|
|
DivideByZero = 1,
|
|
Overflow = 2,
|
|
Underflow = 3,
|
|
Inexact = 4,
|
|
InputDenorm = 7
|
|
}
|
|
}
|