aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/interrupts.c
diff options
context:
space:
mode:
authorMarvin Borner2020-07-24 15:21:36 +0200
committerMarvin Borner2020-07-24 15:21:36 +0200
commitfd73441fe4950c683699fe38ad59e4541b75e5a7 (patch)
tree7f549911388fd3881e52bbf2139aed8170c97481 /src/drivers/interrupts.c
parent43183fe6b259005174a424828b2fbb06bfeb4a90 (diff)
Bug hunting for file reading (ext2 idp recursion)
Diffstat (limited to 'src/drivers/interrupts.c')
-rw-r--r--src/drivers/interrupts.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/drivers/interrupts.c b/src/drivers/interrupts.c
index edf5837..d65490c 100644
--- a/src/drivers/interrupts.c
+++ b/src/drivers/interrupts.c
@@ -4,6 +4,7 @@
#include <cpu.h>
#include <def.h>
#include <interrupts.h>
+#include <mem.h>
#include <serial.h>
/**
@@ -29,8 +30,8 @@ void idt_install()
idt_ptr.limit = (sizeof(struct idt_entry) * 256) - 1;
idt_ptr.base = &idt;
- // Clear IDT by setting memory cells to 0 // TODO
- //memset(&idt, 0, sizeof(struct idt_entry) * 256);
+ // Clear IDT by setting memory cells to 0
+ memset(&idt, 0, sizeof(struct idt_entry) * 256);
__asm__("lidt %0" : : "m"(idt_ptr));
}