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