Add some source code for GDT and resources

This commit is contained in:
manzerbredes 2015-07-20 12:37:21 +04:00
parent a9aec79de3
commit 78f219c0ec
5 changed files with 37 additions and 1 deletions

14
kernel/Types/types.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef __types__
#define __types__
//Byte :
typedef unsigned char u8;
//Word :
typedef unsigned short u16;
//Double Word :
typedef unsigned long int u32;
#endif