PiegOS/kernel/Types/types.h

15 lines
167 B
C
Raw Normal View History

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