aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/OpCodeCsel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Decoders/OpCodeCsel.cs')
-rw-r--r--ARMeilleure/Decoders/OpCodeCsel.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/ARMeilleure/Decoders/OpCodeCsel.cs b/ARMeilleure/Decoders/OpCodeCsel.cs
deleted file mode 100644
index 4b8dc7fd..00000000
--- a/ARMeilleure/Decoders/OpCodeCsel.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace ARMeilleure.Decoders
-{
- class OpCodeCsel : OpCodeAlu, IOpCodeCond
- {
- public int Rm { get; }
-
- public Condition Cond { get; }
-
- public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeCsel(inst, address, opCode);
-
- public OpCodeCsel(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
- {
- Rm = (opCode >> 16) & 0x1f;
- Cond = (Condition)((opCode >> 12) & 0xf);
- }
- }
-} \ No newline at end of file