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