2020-02-29 21:51:55 +01:00
|
|
|
namespace ARMeilleure.Decoders
|
|
|
|
{
|
|
|
|
class OpCode32Sat16 : OpCode32
|
|
|
|
{
|
2020-10-21 14:13:44 +02:00
|
|
|
public int Rn { get; }
|
|
|
|
public int Rd { get; }
|
|
|
|
public int SatImm { get; }
|
|
|
|
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32Sat16(inst, address, opCode);
|
2020-02-29 21:51:55 +01:00
|
|
|
|
|
|
|
public OpCode32Sat16(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
|
|
{
|
|
|
|
Rn = (opCode >> 0) & 0xf;
|
|
|
|
Rd = (opCode >> 12) & 0xf;
|
|
|
|
SatImm = (opCode >> 16) & 0xf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|