mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-11-05 22:18:59 -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