mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-22 17:10:53 -05:00
Move solution and projects to src
This commit is contained in:
12
src/ARMeilleure/Decoders/OpCodeBImmAl.cs
Normal file
12
src/ARMeilleure/Decoders/OpCodeBImmAl.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
class OpCodeBImmAl : OpCodeBImm
|
||||
{
|
||||
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeBImmAl(inst, address, opCode);
|
||||
|
||||
public OpCodeBImmAl(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||||
{
|
||||
Immediate = (long)address + DecoderHelper.DecodeImm26_2(opCode);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user