removing manual setup of keyboard interrupt as its not written in this patch yet

This commit is contained in:
shockrahwow 2019-11-29 13:08:01 -08:00
parent 66901857cd
commit 292a8ba568

View File

@ -5,6 +5,7 @@
#include "types.h"
#include "ports.h"
#include "pit.h"
#include "kbd.h"
const char* err_msg[] = {
"Divide by zero\n",
@ -180,7 +181,7 @@ void init_idt() {
// clear table in case there's garbage in there
memset((u8*)irq_handlers, 0, sizeof(void*));
irq_handlers[0] = inc_ticks; // LULW
irq_handlers[0] = pit_inc_ticks; // LULW
// Remap irq's to proper location
serialport_write_byte(0x20, 0x11);