diff options
Diffstat (limited to 'ChocolArm64/Decoders/OpCodeSimdTbl64.cs')
| -rw-r--r-- | ChocolArm64/Decoders/OpCodeSimdTbl64.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/OpCodeSimdTbl64.cs b/ChocolArm64/Decoders/OpCodeSimdTbl64.cs new file mode 100644 index 00000000..13cc9090 --- /dev/null +++ b/ChocolArm64/Decoders/OpCodeSimdTbl64.cs @@ -0,0 +1,12 @@ +using ChocolArm64.Instructions; + +namespace ChocolArm64.Decoders +{ + class OpCodeSimdTbl64 : OpCodeSimdReg64 + { + public OpCodeSimdTbl64(Inst inst, long position, int opCode) : base(inst, position, opCode) + { + Size = ((opCode >> 13) & 3) + 1; + } + } +}
\ No newline at end of file |
