mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 01:29:48 -06:00
aloha
This commit is contained in:
12
Ryujinx/Cpu/Decoder/AOpCodeBImmAl.cs
Normal file
12
Ryujinx/Cpu/Decoder/AOpCodeBImmAl.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user