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