12 lines
304 B
C#
12 lines
304 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeBImmAl64 : OpCodeBImm64
|
||
|
{
|
||
|
public OpCodeBImmAl64(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Imm = position + DecoderHelper.DecodeImm26_2(opCode);
|
||
|
}
|
||
|
}
|
||
|
}
|