Redo makefiles.
[pintos-anon] / src / devices / kbd.c
index ed52cfab82872ea9b05eaf0924f1a99a2ce3b8b0..867c64ae6b721897fd00405ab0ee94c3ccda28cc 100644 (file)
@@ -1,8 +1,8 @@
 #include "kbd.h"
-#include "debug.h"
-#include "interrupt.h"
-#include "io.h"
-#include "lib.h"
+#include "lib/debug.h"
+#include "lib/lib.h"
+#include "threads/interrupt.h"
+#include "threads/io.h"
 
 static void
 irq21_keyboard (struct intr_frame *args UNUSED) 
@@ -14,5 +14,5 @@ irq21_keyboard (struct intr_frame *args UNUSED)
 void
 kbd_init (void) 
 {
-  intr_register (0x21, 0, IF_OFF, irq21_keyboard, "8042 Keyboard");
+  intr_register (0x21, 0, INTR_OFF, irq21_keyboard, "8042 Keyboard");
 }