summaryrefslogtreecommitdiffstats
path: root/include/types.h
blob: e578adb42522e867aa0bd7ed791f75718ec2d921 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define NULL 0


typedef unsigned char uint8;
typedef unsigned short int uint16;
typedef unsigned long uint32;
typedef unsigned long long uint64;

#if defined(__x86_64)
    typedef uint64 memAddr;
#else
    typedef uint32 memAddr;
#endif