aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs
blob: 062a6d0b7b46337a668708f9da2766de6aebc07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace ARMeilleure.CodeGen.Arm64
{
    enum ArmExtensionType
    {
        Uxtb = 0,
        Uxth = 1,
        Uxtw = 2,
        Uxtx = 3,
        Sxtb = 4,
        Sxth = 5,
        Sxtw = 6,
        Sxtx = 7
    }
}