a0c78f7920
* Update AOpCodeTable.cs * Update AInstEmitSimdShift.cs * Update ASoftFallback.cs * Update AOpCodeSimdShImm.cs * Update ABitUtils.cs * Update AInstEmitSimdArithmetic.cs * Update AInstEmitSimdHelper.cs * Create CpuTestSimdShImm.cs * Create CpuTestSimdRegElem.cs * Address PR feedback. * Nit. * Nit.
16 lines
389 B
C#
16 lines
389 B
C#
using ChocolArm64.Instruction;
|
|
|
|
namespace ChocolArm64.Decoder
|
|
{
|
|
class AOpCodeSimdShImm : AOpCodeSimd
|
|
{
|
|
public int Imm { get; private set; }
|
|
|
|
public AOpCodeSimdShImm(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
|
|
{
|
|
Imm = (OpCode >> 16) & 0x7f;
|
|
|
|
Size = ABitUtils.HighestBitSetNibble(Imm >> 3);
|
|
}
|
|
}
|
|
}
|