14 lines
293 B
C#
14 lines
293 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeT16 : OpCode32
|
||
|
{
|
||
|
public OpCodeT16(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Cond = Condition.Al;
|
||
|
|
||
|
OpCodeSizeInBytes = 2;
|
||
|
}
|
||
|
}
|
||
|
}
|