From 9b2a78fa52249ab481493550490aa5f37872dcf6 Mon Sep 17 00:00:00 2001 From: aqua Date: Sat, 10 Dec 2022 20:56:57 +0200 Subject: Rewrite drivers/uart and drivers/vga in cpp --- devices/pckbd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'devices/pckbd.c') diff --git a/devices/pckbd.c b/devices/pckbd.c index c4fce5b..d550f91 100644 --- a/devices/pckbd.c +++ b/devices/pckbd.c @@ -1,6 +1,5 @@ #include "keyboard.h" #include "ps2_controller.h" -#include "vga.h" #include #include #include @@ -42,7 +41,7 @@ ps2_keyboard_irq_handler() return; case 0x58: // F12 - vga_clear(VGA_COLOR_LIGHT_BLUE, VGA_COLOR_LIGHT_GREY); + // vga_clear(VGA_COLOR_LIGHT_BLUE, VGA_COLOR_LIGHT_GREY); return; } -- cgit v1.2.1