aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Decoders32/A32OpCodeBImmAl.cs')
-rw-r--r--ChocolArm64/Decoders32/A32OpCodeBImmAl.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs b/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs
new file mode 100644
index 00000000..c4a196b6
--- /dev/null
+++ b/ChocolArm64/Decoders32/A32OpCodeBImmAl.cs
@@ -0,0 +1,16 @@
+using ChocolArm64.Instructions;
+
+namespace ChocolArm64.Decoders32
+{
+ class A32OpCodeBImmAl : A32OpCode
+ {
+ public int Imm;
+ public int H;
+
+ public A32OpCodeBImmAl(Inst inst, long position, int opCode) : base(inst, position, opCode)
+ {
+ Imm = (opCode << 8) >> 6;
+ H = (opCode >> 23) & 2;
+ }
+ }
+} \ No newline at end of file