aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/arch/x86_64/idt.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/arch/x86_64/idt.h')
-rw-r--r--kernel/arch/x86_64/idt.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/kernel/arch/x86_64/idt.h b/kernel/arch/x86_64/idt.h
new file mode 100644
index 0000000..e6e2494
--- /dev/null
+++ b/kernel/arch/x86_64/idt.h
@@ -0,0 +1,24 @@
+#ifndef IDT_H
+#define IDT_H
+
+#include <stdint.h>
+
+struct IDTR {
+ uint16_t size;
+ uint64_t offset;
+}__attribute__((packed));
+
+struct IdtEntry {
+ uint16_t offset_low;
+ uint16_t seg_sel;
+ uint8_t ist;
+ uint8_t type_attributes;
+ uint16_t offset_mid;
+ uint32_t offset_high;
+ uint32_t reserved;
+}__attribute__((packed));
+
+void idt_entry(int num, uint64_t* offset, uint16_t sel, uint8_t ist, uint8_t type_attributes);
+void setup_idt();
+
+#endif \ No newline at end of file