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