summaryrefslogtreecommitdiff
path: root/src/stem/mem/gdt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stem/mem/gdt.h')
-rw-r--r--src/stem/mem/gdt.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/stem/mem/gdt.h b/src/stem/mem/gdt.h
deleted file mode 100644
index aac16bb..0000000
--- a/src/stem/mem/gdt.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef DEF_GDT_H
-#define DEF_GDT_H
-
-#include <types.h>
-
-struct gdt_entry {
- uint16_t limit_low;
- uint16_t base_low;
- uint8_t base_middle;
- uint8_t access;
- uint8_t granularity;
- uint8_t base_high;
-} __attribute__((packed));
-
-struct gdt_ptr {
- uint16_t limit;
- uint32_t base;
-} __attribute__((packed));
-
-void gdt_init();
-
-#endif
-