aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/AOpCodeSimdMemMs.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-30 18:06:02 -0300
committergdkchan <gab.dark.100@gmail.com>2018-03-30 18:06:02 -0300
commit53e2d34905c9e5d03f47ea9a5f9f978b5c4925f6 (patch)
treefbfb31a73da0ad76b77dc599b88dc485de50e8cf /ChocolArm64/Decoder/AOpCodeSimdMemMs.cs
parent916540ff41446643a952fe7612aed16bae3fd7d8 (diff)
Enable all ld/st (single structure) instructions
Diffstat (limited to 'ChocolArm64/Decoder/AOpCodeSimdMemMs.cs')
-rw-r--r--ChocolArm64/Decoder/AOpCodeSimdMemMs.cs4
1 files changed, 2 insertions, 2 deletions
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;