aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/State/APState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/State/APState.cs')
-rw-r--r--ChocolArm64/State/APState.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/ChocolArm64/State/APState.cs b/ChocolArm64/State/APState.cs
deleted file mode 100644
index aaf0ff0c..00000000
--- a/ChocolArm64/State/APState.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-
-namespace ChocolArm64.State
-{
- [Flags]
- enum APState
- {
- VBit = 28,
- CBit = 29,
- ZBit = 30,
- NBit = 31,
-
- V = 1 << VBit,
- C = 1 << CBit,
- Z = 1 << ZBit,
- N = 1 << NBit,
-
- NZ = N | Z,
- CV = C | V,
-
- NZCV = NZ | CV
- }
-}