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

        IntType IntType { get; }
    }
}