removing manual setup of keyboard interrupt as its not written in this patch yet
This commit is contained in:
parent
66901857cd
commit
292a8ba568
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user