aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/IOpCodeAluRs64.cs
blob: df503ae9d824372a6d574b02a8847e9b5981393c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace ChocolArm64.Decoders
{
    interface IOpCodeAluRs64 : IOpCodeAlu64
    {
        int Shift { get; }
        int Rm    { get; }

        ShiftType ShiftType { get; }
    }
}