aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Cpu/Decoder/AOpCodeSystem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/Cpu/Decoder/AOpCodeSystem.cs')
-rw-r--r--Ryujinx/Cpu/Decoder/AOpCodeSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Cpu/Decoder/AOpCodeSystem.cs b/Ryujinx/Cpu/Decoder/AOpCodeSystem.cs
index 95b29100..3d81a5d4 100644
--- a/Ryujinx/Cpu/Decoder/AOpCodeSystem.cs
+++ b/Ryujinx/Cpu/Decoder/AOpCodeSystem.cs
@@ -11,7 +11,7 @@ namespace ChocolArm64.Decoder
public int Op1 { get; private set; }
public int Op0 { get; private set; }
- public AOpCodeSystem(AInst Inst, long Position, int OpCode) : base(Inst, Position)
+ public AOpCodeSystem(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
{
Rt = (OpCode >> 0) & 0x1f;
Op2 = (OpCode >> 5) & 0x7;