aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCode32BImm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders/OpCode32BImm.cs')
-rw-r--r--ChocolArm64/Decoders/OpCode32BImm.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/ChocolArm64/Decoders/OpCode32BImm.cs b/ChocolArm64/Decoders/OpCode32BImm.cs
deleted file mode 100644
index 7f3c29a6..00000000
--- a/ChocolArm64/Decoders/OpCode32BImm.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using ChocolArm64.Instructions;
-
-namespace ChocolArm64.Decoders
-{
- class OpCode32BImm : OpCode32, IOpCode32BImm
- {
- public long Imm { get; private set; }
-
- public OpCode32BImm(Inst inst, long position, int opCode) : base(inst, position, opCode)
- {
- uint pc = GetPc();
-
- // When the condition is never, the instruction is BLX to Thumb mode.
- if (Cond != Condition.Nv)
- {
- pc &= ~3u;
- }
-
- Imm = pc + DecoderHelper.DecodeImm24_2(opCode);
-
- if (Cond == Condition.Nv)
- {
- long H = (opCode >> 23) & 2;
-
- Imm |= H;
- }
- }
- }
-} \ No newline at end of file