diff options
Diffstat (limited to 'ChocolArm64/Decoder/AOpCodeSimdShImm.cs')
-rw-r--r-- | ChocolArm64/Decoder/AOpCodeSimdShImm.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeSimdShImm.cs b/ChocolArm64/Decoder/AOpCodeSimdShImm.cs index 6c839881..e6d5210f 100644 --- a/ChocolArm64/Decoder/AOpCodeSimdShImm.cs +++ b/ChocolArm64/Decoder/AOpCodeSimdShImm.cs @@ -10,7 +10,7 @@ namespace ChocolArm64.Decoder { Imm = (OpCode >> 16) & 0x7f; - Size = ABitUtils.HighestBitSet32(Imm >> 3); + Size = ABitUtils.HighestBitSetNibble(Imm >> 3); } } -}
\ No newline at end of file +} |