]> rtime.felk.cvut.cz Git - sysless.git/blob - arch/arm/mach-at91sam7/defines/portmacro.h
Build framework for the AT91SAM7 architecture
[sysless.git] / arch / arm / mach-at91sam7 / defines / portmacro.h
1 #ifndef PORTMACRO_H
2 #define PORTMACRO_H
3
4 #include <stddef.h>
5 #include <inttypes.h>
6
7 #define THUMB_INTERWORK
8 #define inline
9
10 #ifndef LITTLE_ENDIAN
11 #define LITTLE_ENDIAN 1234
12 #endif
13
14 #ifndef uint64_t
15 #define uint64_t unsigned long long /**< 64-bit */
16 #endif
17
18 #ifndef int64_t
19 #define int64_t signed long long    /**< 64-bit */
20 #endif
21
22 #define false (0)
23 #define true  (1)
24
25 #ifndef FALSE
26 #define FALSE        false
27 #endif
28 #ifndef TRUE
29 #define TRUE         true
30 #endif
31
32 #endif /* PORTMACRO_H */