PiegOS/kernel/Helpers/types.h
2015-07-28 14:19:00 +04:00

14 lines
167 B
C

#ifndef __types__
#define __types__
//Byte :
typedef unsigned char u8;
//Word :
typedef unsigned short u16;
//Double Word :
typedef unsigned long int u32;
#endif