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

        AShiftType ShiftType { get; }
    }
}