summaryrefslogtreecommitdiff
path: root/src/kernel/arch/i386/gdt.h
diff options
context:
space:
mode:
authordzwdz2022-07-16 13:33:00 +0200
committerdzwdz2022-07-16 13:33:00 +0200
commit912d2e3c7eb1baa71dda2c0a28aa5809eaa96f27 (patch)
tree4e27f3538466d5fd63a311d50916039a7a15a485 /src/kernel/arch/i386/gdt.h
parent1eeb66af44ab335888410d716d604e569f20866e (diff)
amd64: barely boot into kernel code
Diffstat (limited to 'src/kernel/arch/i386/gdt.h')
-rw-r--r--src/kernel/arch/i386/gdt.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/kernel/arch/i386/gdt.h b/src/kernel/arch/i386/gdt.h
deleted file mode 100644
index 5e40cd7..0000000
--- a/src/kernel/arch/i386/gdt.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-enum {
- SEG_null,
- // order dictated by SYSENTER
- SEG_r0code,
- SEG_r0data,
- SEG_r3code,
- SEG_r3data,
- SEG_TSS,
-
- SEG_end
-};
-
-void gdt_init(void);
-void gdt_farjump(int segment);