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