From 2549b2503b67b2931850980ad6c89a792bd98676 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 16 Apr 2021 17:45:49 +0200 Subject: [PATCH] Cleaning IDT code --- src/core/idt.c | 15 ++++++++------- src/core/idt.h | 9 +++++++-- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/src/core/idt.c b/src/core/idt.c index 5acdf8b..861927a 100644 --- a/src/core/idt.c +++ b/src/core/idt.c @@ -2,7 +2,7 @@ struct IDT_REGISTER IDTR={ 8*IDT_MAX_ENTRY, - 0x0 + 0x0 // IDT is located at physical address 0 }; // Interrupt functions (cf int.S) @@ -15,17 +15,18 @@ INT_SYSCALL; void idt_init(){ - // Map first default 32 entries + // Map entries, note that first 32 entries are used by the CPU + // and should be mapped to a function (INT_DEFAULT here) for(int i=0;i