From be0e4007dc92e24a77bdc36a40d2450c41d9b560 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 6 Mar 2018 21:36:49 -0300 Subject: Add SMLAL (vector), fix EXT instruction --- ChocolArm64/Decoder/AOpCodeSimdExt.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ChocolArm64/Decoder/AOpCodeSimdExt.cs') diff --git a/ChocolArm64/Decoder/AOpCodeSimdExt.cs b/ChocolArm64/Decoder/AOpCodeSimdExt.cs index cf22d654..888e4470 100644 --- a/ChocolArm64/Decoder/AOpCodeSimdExt.cs +++ b/ChocolArm64/Decoder/AOpCodeSimdExt.cs @@ -8,7 +8,7 @@ namespace ChocolArm64.Decoder public AOpCodeSimdExt(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) { - int Imm4 = (OpCode >> 11) & 0xf; + Imm4 = (OpCode >> 11) & 0xf; } } } \ No newline at end of file -- cgit v1.2.3