From a97affbe723916a3a5a2bd71b6677accf8d97d41 Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 14 Oct 2019 03:09:41 -0700 Subject: [PATCH] removed fluff files --- idt.h | 3 --- idt.s | 7 ------- 2 files changed, 10 deletions(-) delete mode 100644 idt.h delete mode 100644 idt.s 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