aboutsummaryrefslogtreecommitdiff
path: root/src/gdt/gdt.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdt/gdt.asm')
-rw-r--r--src/gdt/gdt.asm14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gdt/gdt.asm b/src/gdt/gdt.asm
new file mode 100644
index 0000000..c2128e4
--- /dev/null
+++ b/src/gdt/gdt.asm
@@ -0,0 +1,14 @@
+; GDT flush function
+global gdt_flush
+extern gp
+gdt_flush:
+ lgdt [gp]
+ mov ax, 0x10 ; Data segment offset of GDT
+ mov ds, ax
+ mov es, ax
+ mov fs, ax
+ mov gs, ax
+ mov ss, ax
+ jmp 0x08:flush2 ; Code segment offset
+flush2:
+ ret ; Returns to C code \ No newline at end of file