mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 19:30:17 +00:00
11 lines
No EOL
438 B
C#
11 lines
No EOL
438 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeCcmpImm : OpCodeCcmp, IOpCodeAluImm
|
|
{
|
|
public long Immediate => RmImm;
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeCcmpImm(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeCcmpImm(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock) { }
|
|
}
|
|
} |