mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 03:40:18 +00:00
11 lines
No EOL
437 B
C#
11 lines
No EOL
437 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeBImm : OpCode, IOpCodeBImm
|
|
{
|
|
public long Immediate { get; protected set; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeBImm(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeBImm(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock) { }
|
|
}
|
|
} |