aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/OpCodeBImm32.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders/OpCodeBImm32.cs')
-rw-r--r--ChocolArm64/Decoders/OpCodeBImm32.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/OpCodeBImm32.cs b/ChocolArm64/Decoders/OpCodeBImm32.cs
new file mode 100644
index 00000000..127ac174
--- /dev/null
+++ b/ChocolArm64/Decoders/OpCodeBImm32.cs
@@ -0,0 +1,29 @@
+using ChocolArm64.Instructions;
+
+namespace ChocolArm64.Decoders
+{
+ class OpCodeBImm32 : OpCode32, IOpCodeBImm32
+ {
+ public long Imm { get; private set; }
+
+ public OpCodeBImm32(Inst inst, long position, int opCode) : base(inst, position, opCode)
+ {
+ uint pc = GetPc();
+
+ //When the codition 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