aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/IAOpCodeAluRx.cs
blob: b49d5325a96e5d392d553c6c3bdd40c56669cab4 (plain)
1
2
3
4
5
6
7
8
9
10
namespace ChocolArm64.Decoder
{
    interface IAOpCodeAluRx : IAOpCodeAlu
    {
        int Shift { get; }
        int Rm    { get; }

        AIntType IntType { get; }
    }
}