aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/AShiftType.cs
blob: 34ceea20873f2e4b5638137405e5cebf47ded6b7 (plain)
1
2
3
4
5
6
7
8
9
10
namespace ChocolArm64.Decoder
{
    enum AShiftType
    {
        Lsl,
        Lsr,
        Asr,
        Ror
    }
}