aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCode32.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders/OpCode32.cs')
-rw-r--r--ChocolArm64/Decoders/OpCode32.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ChocolArm64/Decoders/OpCode32.cs b/ChocolArm64/Decoders/OpCode32.cs
index 8534b78f..1909757c 100644
--- a/ChocolArm64/Decoders/OpCode32.cs
+++ b/ChocolArm64/Decoders/OpCode32.cs
@@ -16,8 +16,8 @@ namespace ChocolArm64.Decoders
public uint GetPc()
{
- //Due to backwards compatibility and legacy behavior of ARMv4 CPUs pipeline,
- //the PC actually points 2 instructions ahead.
+ // Due to backwards compatibility and legacy behavior of ARMv4 CPUs pipeline,
+ // the PC actually points 2 instructions ahead.
return (uint)Position + (uint)OpCodeSizeInBytes * 2;
}
}