aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/OpCode32MemStEx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Decoders/OpCode32MemStEx.cs')
-rw-r--r--ARMeilleure/Decoders/OpCode32MemStEx.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/ARMeilleure/Decoders/OpCode32MemStEx.cs b/ARMeilleure/Decoders/OpCode32MemStEx.cs
index b9c6d4f4..dcf93b22 100644
--- a/ARMeilleure/Decoders/OpCode32MemStEx.cs
+++ b/ARMeilleure/Decoders/OpCode32MemStEx.cs
@@ -2,7 +2,9 @@
{
class OpCode32MemStEx : OpCode32Mem, IOpCode32MemEx
{
- public int Rd { get; private set; }
+ public int Rd { get; }
+
+ public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32MemStEx(inst, address, opCode);
public OpCode32MemStEx(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
{