X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdevices%2Fkbd.c;h=bcfe2c839f727bb0b17ed7487f2bcc559e37d4b5;hb=f2f8875638593bd5365cfd6a5ba7c9578e52322f;hp=867c64ae6b721897fd00405ab0ee94c3ccda28cc;hpb=f6580e9ad405b519dbe85027691bf3c66074b0a4;p=pintos-anon diff --git a/src/devices/kbd.c b/src/devices/kbd.c index 867c64a..bcfe2c8 100644 --- a/src/devices/kbd.c +++ b/src/devices/kbd.c @@ -1,13 +1,13 @@ -#include "kbd.h" -#include "lib/debug.h" -#include "lib/lib.h" +#include "devices/kbd.h" +#include +#include #include "threads/interrupt.h" #include "threads/io.h" static void irq21_keyboard (struct intr_frame *args UNUSED) { - printk ("Keyboard!\n"); + printf ("Keyboard!\n"); inb (0x60); }