From 53e2d34905c9e5d03f47ea9a5f9f978b5c4925f6 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 30 Mar 2018 18:06:02 -0300 Subject: Enable all ld/st (single structure) instructions --- ChocolArm64/Decoder/AOpCodeSimdMemMs.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ChocolArm64/Decoder/AOpCodeSimdMemMs.cs') diff --git a/ChocolArm64/Decoder/AOpCodeSimdMemMs.cs b/ChocolArm64/Decoder/AOpCodeSimdMemMs.cs index 9ea979ba..a54e2360 100644 --- a/ChocolArm64/Decoder/AOpCodeSimdMemMs.cs +++ b/ChocolArm64/Decoder/AOpCodeSimdMemMs.cs @@ -25,8 +25,8 @@ namespace ChocolArm64.Decoder default: Inst = AInst.Undefined; return; } - Size = (OpCode >> 10) & 0x3; - WBack = ((OpCode >> 23) & 0x1) != 0; + Size = (OpCode >> 10) & 3; + WBack = ((OpCode >> 23) & 1) != 0; bool Q = ((OpCode >> 30) & 1) != 0; -- cgit v1.2.3