Create FPType.cs

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

View file

@ -0,0 +1,11 @@
namespace ChocolArm64.State
{
enum FPType
{
Nonzero,
Zero,
Infinity,
QNaN,
SNaN
}
}