#ifndef __DATATYPE_H
|
#define __DATATYPE_H
|
|
#include "SYS.h"
|
|
typedef unsigned char uint8;
|
typedef unsigned short int uint16;
|
typedef unsigned int uint32;
|
typedef signed char int8;
|
typedef signed short int int16;
|
typedef signed int int32;
|
|
typedef volatile unsigned char vuint8;
|
typedef volatile unsigned short int vuint16;
|
typedef volatile unsigned int vuint32;
|
typedef volatile signed char vint8;
|
typedef volatile signed short int vint16;
|
typedef volatile signed int vint32;
|
#endif
|