PiegOS/kernel/Types/types.hpp
2015-07-20 16:34:46 +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