aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Decoders/OpCodeT16AddSubSp.cs')
-rw-r--r--ARMeilleure/Decoders/OpCodeT16AddSubSp.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs b/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs
deleted file mode 100644
index b66fe0cd..00000000
--- a/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using ARMeilleure.State;
-
-namespace ARMeilleure.Decoders
-{
- class OpCodeT16AddSubSp : OpCodeT16, IOpCode32AluImm
- {
- public int Rd => RegisterAlias.Aarch32Sp;
- public int Rn => RegisterAlias.Aarch32Sp;
-
- public bool? SetFlags => false;
-
- public int Immediate { get; }
-
- public bool IsRotated => false;
-
- public static new OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT16AddSubSp(inst, address, opCode);
-
- public OpCodeT16AddSubSp(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
- {
- Immediate = ((opCode >> 0) & 0x7f) << 2;
- }
- }
-}