mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
11 lines
271 B
C#
11 lines
271 B
C#
|
using ChocolArm64.Instruction;
|
||
|
|
||
|
namespace ChocolArm64.Decoder
|
||
|
{
|
||
|
class AOpCodeCcmpImm : AOpCodeCcmp, IAOpCodeAluImm
|
||
|
{
|
||
|
public long Imm => RmImm;
|
||
|
|
||
|
public AOpCodeCcmpImm(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode) { }
|
||
|
}
|
||
|
}
|