aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Decoders/OpCode32SimdMovGp.cs')
-rw-r--r--ARMeilleure/Decoders/OpCode32SimdMovGp.cs12
1 files changed, 7 insertions, 5 deletions
diff --git a/ARMeilleure/Decoders/OpCode32SimdMovGp.cs b/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
index 918291a1..8e2c84fb 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
+++ b/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
@@ -4,12 +4,14 @@
{
public int Size => 2;
- public int Vn { get; private set; }
- public int Rt { get; private set; }
- public int Op { get; private set; }
+ public int Vn { get; }
+ public int Rt { get; }
+ public int Op { get; }
- public int Opc1 { get; private set; }
- public int Opc2 { get; private set; }
+ public int Opc1 { get; }
+ public int Opc2 { get; }
+
+ public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32SimdMovGp(inst, address, opCode);
public OpCode32SimdMovGp(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
{