1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-28 18:46:47 -06:00

15 lines
348 B
C#

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);
}
}
}