From f39a864050589ac7e757a9d72b46ac693125b382 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 2 Mar 2018 19:21:54 -0300 Subject: Add EXT, CMTST (vector) and UMULL (vector) instructions --- ChocolArm64/Decoder/AOpCodeSimdExt.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ChocolArm64/Decoder/AOpCodeSimdExt.cs (limited to 'ChocolArm64/Decoder/AOpCodeSimdExt.cs') diff --git a/ChocolArm64/Decoder/AOpCodeSimdExt.cs b/ChocolArm64/Decoder/AOpCodeSimdExt.cs new file mode 100644 index 00000000..cf22d654 --- /dev/null +++ b/ChocolArm64/Decoder/AOpCodeSimdExt.cs @@ -0,0 +1,14 @@ +using ChocolArm64.Instruction; + +namespace ChocolArm64.Decoder +{ + class AOpCodeSimdExt : AOpCodeSimdReg + { + public int Imm4 { get; private set; } + + public AOpCodeSimdExt(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) + { + int Imm4 = (OpCode >> 11) & 0xf; + } + } +} \ No newline at end of file -- cgit v1.2.3