diff options
Diffstat (limited to 'ARMeilleure/Decoders/OpCodeSimdFcond.cs')
-rw-r--r-- | ARMeilleure/Decoders/OpCodeSimdFcond.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ARMeilleure/Decoders/OpCodeSimdFcond.cs b/ARMeilleure/Decoders/OpCodeSimdFcond.cs index 9e7a5f3b..aa16e0c1 100644 --- a/ARMeilleure/Decoders/OpCodeSimdFcond.cs +++ b/ARMeilleure/Decoders/OpCodeSimdFcond.cs @@ -2,9 +2,11 @@ namespace ARMeilleure.Decoders { class OpCodeSimdFcond : OpCodeSimdReg, IOpCodeCond { - public int Nzcv { get; private set; } + public int Nzcv { get; } - public Condition Cond { get; private set; } + public Condition Cond { get; } + + public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeSimdFcond(inst, address, opCode); public OpCodeSimdFcond(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { |