diff options
Diffstat (limited to 'source/types.hpp')
| -rw-r--r-- | source/types.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/types.hpp b/source/types.hpp new file mode 100644 index 0000000..222b11c --- /dev/null +++ b/source/types.hpp @@ -0,0 +1,18 @@ +#ifndef TYPES_HPP +#define TYPES_HPP + +typedef signed char s8; +typedef signed short s16; +typedef signed int s32; + +typedef unsigned char u8; +typedef unsigned short u16; +typedef unsigned int u32; + +typedef volatile unsigned char vu8; +typedef volatile unsigned short vu16; +typedef volatile unsigned int vu32; + +typedef u16 color_t; + +#endif |
