mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 18:10:18 +00:00
15 lines
No EOL
515 B
C#
15 lines
No EOL
515 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeCcmpReg : OpCodeCcmp, IOpCodeAluRs
|
|
{
|
|
public int Rm => RmImm;
|
|
|
|
public int Shift => 0;
|
|
|
|
public ShiftType ShiftType => ShiftType.Lsl;
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode, bool inITBlock) => new OpCodeCcmpReg(inst, address, opCode, inITBlock);
|
|
|
|
public OpCodeCcmpReg(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock) { }
|
|
}
|
|
} |