diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-10-21 09:13:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-21 09:13:44 -0300 |
| commit | 2f164917126ecef3a44c989e9442d2c663e58535 (patch) | |
| tree | b3a37b665bcebfe5c93108992a97fe90512f88dc /ARMeilleure/Decoders/OpCode32AluMla.cs | |
| parent | efa77a241555efa3ddfa3425919211ce6c8134a7 (diff) | |
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
Diffstat (limited to 'ARMeilleure/Decoders/OpCode32AluMla.cs')
| -rw-r--r-- | ARMeilleure/Decoders/OpCode32AluMla.cs | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/ARMeilleure/Decoders/OpCode32AluMla.cs b/ARMeilleure/Decoders/OpCode32AluMla.cs index 4570aa4e..4e9b25e3 100644 --- a/ARMeilleure/Decoders/OpCode32AluMla.cs +++ b/ARMeilleure/Decoders/OpCode32AluMla.cs @@ -2,15 +2,17 @@ { class OpCode32AluMla : OpCode32, IOpCode32AluReg { - public int Rn { get; private set; } - public int Rm { get; private set; } - public int Ra { get; private set; } - public int Rd { get; private set; } + public int Rn { get; } + public int Rm { get; } + public int Ra { get; } + public int Rd { get; } - public bool NHigh { get; private set; } - public bool MHigh { get; private set; } - public bool R { get; private set; } - public bool SetFlags { get; private set; } + public bool NHigh { get; } + public bool MHigh { get; } + public bool R { get; } + public bool SetFlags { get; } + + public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32AluMla(inst, address, opCode); public OpCode32AluMla(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { |
