removed fluff files

This commit is contained in:
shockrah 2019-10-14 03:09:41 -07:00
parent b879ad943d
commit a97affbe72
2 changed files with 0 additions and 10 deletions

3
idt.h
View File

@ -1,3 +0,0 @@
#include "types.h"
void load_idt(void* idt_addr);

7
idt.s
View File

@ -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