blob: cf22d6546f32e02c574f655ffaad663be5e3f380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using ChocolArm64.Instruction;
namespace ChocolArm64.Decoder
{
class AOpCodeSimdExt : AOpCodeSimdReg
{
public int Imm4 { get; private set; }
public AOpCodeSimdExt(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
{
int Imm4 = (OpCode >> 11) & 0xf;
}
}
}
|