diff options
Diffstat (limited to 'ChocolArm64/Decoder/AOpCodeBImmAl.cs')
| -rw-r--r-- | ChocolArm64/Decoder/AOpCodeBImmAl.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeBImmAl.cs b/ChocolArm64/Decoder/AOpCodeBImmAl.cs new file mode 100644 index 00000000..a4ff686d --- /dev/null +++ b/ChocolArm64/Decoder/AOpCodeBImmAl.cs @@ -0,0 +1,12 @@ +using ChocolArm64.Instruction; + +namespace ChocolArm64.Decoder +{ + class AOpCodeBImmAl : AOpCodeBImm + { + public AOpCodeBImmAl(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) + { + Imm = Position + ADecoderHelper.DecodeImm26_2(OpCode); + } + } +}
\ No newline at end of file |
