summaryrefslogtreecommitdiff
path: root/kernel/GDT/gdt.h
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-07-20 16:34:46 +0400
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-07-20 16:34:46 +0400
commit9b856ae4d7ad3dafc5cc6eac9194ff3803965d94 (patch)
treea2ed8285af123c8276c6acfcda41e8d0888d7632 /kernel/GDT/gdt.h
parent78f219c0ec049a08312896fdb1194ce03a54769a (diff)
Switch to cpp
Diffstat (limited to 'kernel/GDT/gdt.h')
-rw-r--r--kernel/GDT/gdt.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/kernel/GDT/gdt.h b/kernel/GDT/gdt.h
deleted file mode 100644
index 3df5698..0000000
--- a/kernel/GDT/gdt.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef __GDT__
-#define __GDT__
-
-#include "../Types/types.h"
-
-struct gdtPointer{
- u16 size;
- u32 segment;
-} __attribute__ ((packed));
-
-struct gdtDescriptor{
- u16 limit1;
- u16 base1;
- u8 base2;
- u8 type : 4;
- u8 param1 : 4;
- u8 limit2 : 4;
- u8 param2 : 4;
- u8 base3;
-} __attribute__ ((packed));
-
-#endif