Initial commit

This commit is contained in:
2018-11-11 14:19:19 -06:00
commit af15d43c8a
17 changed files with 1351 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#ifndef __GDT_H
#define __GDT_H
void gdt_set_gate(int num, unsigned long base, unsigned long limit, unsigned char access, unsigned char gran);
void gdt_install();
#endif