aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoders/ShiftType.cs
blob: cad4310346ec9f3855e91da173bf859ed832e932 (plain)
1
2
3
4
5
6
7
8
9
10
namespace ChocolArm64.Decoders
{
    enum ShiftType
    {
        Lsl = 0,
        Lsr = 1,
        Asr = 2,
        Ror = 3
    }
}