diff options
Diffstat (limited to 'ARMeilleure/Decoders/OpCodeAluBinary.cs')
-rw-r--r-- | ARMeilleure/Decoders/OpCodeAluBinary.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ARMeilleure/Decoders/OpCodeAluBinary.cs b/ARMeilleure/Decoders/OpCodeAluBinary.cs index 2bdf1d79..e8b10656 100644 --- a/ARMeilleure/Decoders/OpCodeAluBinary.cs +++ b/ARMeilleure/Decoders/OpCodeAluBinary.cs @@ -2,7 +2,9 @@ namespace ARMeilleure.Decoders { class OpCodeAluBinary : OpCodeAlu { - public int Rm { get; private set; } + public int Rm { get; } + + public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeAluBinary(inst, address, opCode); public OpCodeAluBinary(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { |