aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/Condition.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders/Condition.cs')
-rw-r--r--ChocolArm64/Decoders/Condition.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/Condition.cs b/ChocolArm64/Decoders/Condition.cs
new file mode 100644
index 00000000..d1aa5772
--- /dev/null
+++ b/ChocolArm64/Decoders/Condition.cs
@@ -0,0 +1,22 @@
+namespace ChocolArm64.Decoders
+{
+ enum Condition
+ {
+ Eq = 0,
+ Ne = 1,
+ GeUn = 2,
+ LtUn = 3,
+ Mi = 4,
+ Pl = 5,
+ Vs = 6,
+ Vc = 7,
+ GtUn = 8,
+ LeUn = 9,
+ Ge = 10,
+ Lt = 11,
+ Gt = 12,
+ Le = 13,
+ Al = 14,
+ Nv = 15
+ }
+} \ No newline at end of file