ad00fd0244
* Update OpCodeTable.cs * Update InstEmitSimdShift.cs * Update SoftFallback.cs * Update CpuTestSimdReg.cs * Nit. * Update SoftFallback.cs * Update Optimizations.cs * Update InstEmitSimdLogical.cs * Update InstEmitSimdArithmetic.cs
17 lines
455 B
C#
17 lines
455 B
C#
using ChocolArm64.Instructions;
|
|
|
|
namespace ChocolArm64.Decoders
|
|
{
|
|
class OpCodeSimdFcond64 : OpCodeSimdReg64, IOpCodeCond64
|
|
{
|
|
public int Nzcv { get; private set; }
|
|
|
|
public Cond Cond { get; private set; }
|
|
|
|
public OpCodeSimdFcond64(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
|
{
|
|
Nzcv = (opCode >> 0) & 0xf;
|
|
Cond = (Cond)((opCode >> 12) & 0xf);
|
|
}
|
|
}
|
|
}
|