diff options
Diffstat (limited to 'ChocolArm64/Decoders/OpCodeCcmpReg64.cs')
| -rw-r--r-- | ChocolArm64/Decoders/OpCodeCcmpReg64.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ChocolArm64/Decoders/OpCodeCcmpReg64.cs b/ChocolArm64/Decoders/OpCodeCcmpReg64.cs new file mode 100644 index 00000000..a0544d98 --- /dev/null +++ b/ChocolArm64/Decoders/OpCodeCcmpReg64.cs @@ -0,0 +1,15 @@ +using ChocolArm64.Instructions; + +namespace ChocolArm64.Decoders +{ + class OpCodeCcmpReg64 : OpCodeCcmp64, IOpCodeAluRs64 + { + public int Rm => RmImm; + + public int Shift => 0; + + public ShiftType ShiftType => ShiftType.Lsl; + + public OpCodeCcmpReg64(Inst inst, long position, int opCode) : base(inst, position, opCode) { } + } +}
\ No newline at end of file |
