aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Decoder/AIntType.cs
blob: 242fdada1462e3925ea84a6d832aebceea611243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace ChocolArm64.Decoder
{
    enum AIntType
    {
        UInt8  = 0,
        UInt16 = 1,
        UInt32 = 2,
        UInt64 = 3,
        Int8   = 4,
        Int16  = 5,
        Int32  = 6,
        Int64  = 7
    }
}