22 lines
510 B
C#
22 lines
510 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeAluImm8T16 : OpCodeT16, IOpCodeAlu32
|
||
|
{
|
||
|
private int _rdn;
|
||
|
|
||
|
public int Rd => _rdn;
|
||
|
public int Rn => _rdn;
|
||
|
|
||
|
public bool SetFlags => false;
|
||
|
|
||
|
public int Imm { get; private set; }
|
||
|
|
||
|
public OpCodeAluImm8T16(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Imm = (opCode >> 0) & 0xff;
|
||
|
_rdn = (opCode >> 8) & 0x7;
|
||
|
}
|
||
|
}
|
||
|
}
|