diff options
Diffstat (limited to 'ChocolArm64/Decoders/IntType.cs')
| -rw-r--r-- | ChocolArm64/Decoders/IntType.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/IntType.cs b/ChocolArm64/Decoders/IntType.cs new file mode 100644 index 00000000..70f833ec --- /dev/null +++ b/ChocolArm64/Decoders/IntType.cs @@ -0,0 +1,14 @@ +namespace ChocolArm64.Decoders +{ + enum IntType + { + UInt8 = 0, + UInt16 = 1, + UInt32 = 2, + UInt64 = 3, + Int8 = 4, + Int16 = 5, + Int32 = 6, + Int64 = 7 + } +}
\ No newline at end of file |
