blob: a6f334e6ba3824abe9366ab20d45289933e40d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __types__
#define __types__
//Byte :
typedef unsigned char u8;
//Word :
typedef unsigned short u16;
//Double Word :
typedef unsigned long int u32;
#endif
|