diff --git a/idt.h b/idt.h deleted file mode 100644 index dd3c685..0000000 --- a/idt.h +++ /dev/null @@ -1,3 +0,0 @@ -#include "types.h" - -void load_idt(void* idt_addr); diff --git a/idt.s b/idt.s deleted file mode 100644 index 69d0f46..0000000 --- a/idt.s +++ /dev/null @@ -1,7 +0,0 @@ -global load_idt - -load_idt: - ; takes the address of the first element in the Interrupt descriptor table - mov eax, [esp+4] - lidt eax - ret