mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-27 02:52:22 -05:00
Move solution and projects to src
This commit is contained in:
11
src/ARMeilleure/Decoders/OpCodeCcmpImm.cs
Normal file
11
src/ARMeilleure/Decoders/OpCodeCcmpImm.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
class OpCodeCcmpImm : OpCodeCcmp, IOpCodeAluImm
|
||||
{
|
||||
public long Immediate => RmImm;
|
||||
|
||||
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeCcmpImm(inst, address, opCode);
|
||||
|
||||
public OpCodeCcmpImm(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user