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