mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 01:06:38 +00:00
12 lines
293 B
C#
12 lines
293 B
C#
|
using ChocolArm64.Instruction;
|
||
|
|
||
|
namespace ChocolArm64.Decoder
|
||
|
{
|
||
|
class AOpCodeBImmAl : AOpCodeBImm
|
||
|
{
|
||
|
public AOpCodeBImmAl(AInst Inst, long Position, int OpCode) : base(Inst, Position)
|
||
|
{
|
||
|
Imm = Position + ADecoderHelper.DecodeImm26_2(OpCode);
|
||
|
}
|
||
|
}
|
||
|
}
|