summaryrefslogtreecommitdiff
path: root/source/types.hpp
blob: 222b11c5f31a2d799337fbda52995e549a7767cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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