aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/State/PState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/State/PState.cs')
-rw-r--r--ChocolArm64/State/PState.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChocolArm64/State/PState.cs b/ChocolArm64/State/PState.cs
index 40636c87..aef5f53b 100644
--- a/ChocolArm64/State/PState.cs
+++ b/ChocolArm64/State/PState.cs
@@ -5,11 +5,15 @@ namespace ChocolArm64.State
[Flags]
enum PState
{
+ TBit = 5,
+
VBit = 28,
CBit = 29,
ZBit = 30,
NBit = 31,
+ T = 1 << TBit,
+
V = 1 << VBit,
C = 1 << CBit,
Z = 1 << ZBit,