blob: 56f870df6ca124e8e3697b4e85519207edbcd6b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using ChocolArm64.Decoder;
using ChocolArm64.Instruction;
namespace ChocolArm64.Decoder32
{
class A32OpCode : AOpCode
{
public ACond Cond { get; private set; }
public A32OpCode(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
{
Cond = (ACond)((uint)OpCode >> 28);
}
}
}
|