2f16491712
* Get rid of Reflection.Emit dependency on CPU and Shader projects * Remove useless private sets * Missed those due to the alignment
12 lines
No EOL
418 B
C#
12 lines
No EOL
418 B
C#
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);
|
|
}
|
|
}
|
|
} |