diff options
Diffstat (limited to 'ARMeilleure/Decoders/OpCode32AluRsImm.cs')
-rw-r--r-- | ARMeilleure/Decoders/OpCode32AluRsImm.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ARMeilleure/Decoders/OpCode32AluRsImm.cs b/ARMeilleure/Decoders/OpCode32AluRsImm.cs index 68ca0d0c..f24e7757 100644 --- a/ARMeilleure/Decoders/OpCode32AluRsImm.cs +++ b/ARMeilleure/Decoders/OpCode32AluRsImm.cs @@ -2,10 +2,12 @@ namespace ARMeilleure.Decoders { class OpCode32AluRsImm : OpCode32Alu { - public int Rm { get; private set; } - public int Immediate { get; private set; } + public int Rm { get; } + public int Immediate { get; } - public ShiftType ShiftType { get; private set; } + public ShiftType ShiftType { get; } + + public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32AluRsImm(inst, address, opCode); public OpCode32AluRsImm(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { |