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/OpCode32System.cs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'ARMeilleure/Decoders/OpCode32System.cs') diff --git a/ARMeilleure/Decoders/OpCode32System.cs b/ARMeilleure/Decoders/OpCode32System.cs index bf438301..89e93349 100644 --- a/ARMeilleure/Decoders/OpCode32System.cs +++ b/ARMeilleure/Decoders/OpCode32System.cs @@ -2,14 +2,16 @@ { class OpCode32System : OpCode32 { - public int Opc1 { get; private set; } - public int CRn { get; private set; } - public int Rt { get; private set; } - public int Opc2 { get; private set; } - public int CRm { get; private set; } - public int MrrcOp { get; private set; } + public int Opc1 { get; } + public int CRn { get; } + public int Rt { get; } + public int Opc2 { get; } + public int CRm { get; } + public int MrrcOp { get; } - public int Coproc { get; private set; } + public int Coproc { get; } + + public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32System(inst, address, opCode); public OpCode32System(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { -- cgit v1.2.3