aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeMul64.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders/OpCodeMul64.cs')
-rw-r--r--ChocolArm64/Decoders/OpCodeMul64.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/ChocolArm64/Decoders/OpCodeMul64.cs b/ChocolArm64/Decoders/OpCodeMul64.cs
deleted file mode 100644
index 176b7b93..00000000
--- a/ChocolArm64/Decoders/OpCodeMul64.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ChocolArm64.Instructions;
-
-namespace ChocolArm64.Decoders
-{
- class OpCodeMul64 : OpCodeAlu64
- {
- public int Rm { get; private set; }
- public int Ra { get; private set; }
-
- public OpCodeMul64(Inst inst, long position, int opCode) : base(inst, position, opCode)
- {
- Ra = (opCode >> 10) & 0x1f;
- Rm = (opCode >> 16) & 0x1f;
- }
- }
-} \ No newline at end of file