mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 14:00:19 +00:00
17 lines
602 B
C#
17 lines
602 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeSimdFcond : OpCodeSimdReg, IOpCodeCond
|
|
{
|
|
public int Nzcv { get; }
|
|
|
|
public Condition Cond { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeSimdFcond(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeSimdFcond(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
|
{
|
|
Nzcv = (opCode >> 0) & 0xf;
|
|
Cond = (Condition)((opCode >> 12) & 0xf);
|
|
}
|
|
}
|
|
}
|