From 2f164917126ecef3a44c989e9442d2c663e58535 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 21 Oct 2020 09:13:44 -0300 Subject: Get rid of Reflection.Emit dependency on CPU and Shader projects (#1626) * Get rid of Reflection.Emit dependency on CPU and Shader projects * Remove useless private sets * Missed those due to the alignment --- ARMeilleure/Decoders/OpCodeSimdFcond.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ARMeilleure/Decoders/OpCodeSimdFcond.cs') 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) { -- cgit v1.2.3