aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs
blob: 20ccfd4bad514560fab586a8cde7c7e6bf68bd81 (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,
    }
}