aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/AOpCodeSimdTbl.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoder/AOpCodeSimdTbl.cs')
-rw-r--r--ChocolArm64/Decoder/AOpCodeSimdTbl.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeSimdTbl.cs b/ChocolArm64/Decoder/AOpCodeSimdTbl.cs
new file mode 100644
index 00000000..c8ae5bac
--- /dev/null
+++ b/ChocolArm64/Decoder/AOpCodeSimdTbl.cs
@@ -0,0 +1,12 @@
+using ChocolArm64.Instruction;
+
+namespace ChocolArm64.Decoder
+{
+ class AOpCodeSimdTbl : AOpCodeSimdReg
+ {
+ public AOpCodeSimdTbl(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
+ {
+ Size = ((OpCode >> 13) & 3) + 1;
+ }
+ }
+} \ No newline at end of file