diff options
author | Marvin Borner | 2019-09-16 19:48:05 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-16 19:48:05 +0200 |
commit | 397c44c212cabe6d974925ef1752f5eec49f5f44 (patch) | |
tree | bf9fa7f28629f8e693d2e687f9752df0572d34d2 /src/input | |
parent | f1e62229ca1ce4d7768268724204772049341282 (diff) |
Renamed graphics driver for future VESA? support
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/ps2/keyboard.c | 2 | ||||
-rw-r--r-- | src/input/ps2/mouse.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/input/ps2/keyboard.c b/src/input/ps2/keyboard.c index bd8a4ba..ae17675 100644 --- a/src/input/ps2/keyboard.c +++ b/src/input/ps2/keyboard.c @@ -1,6 +1,6 @@ #include "../../interrupts/interrupts.h" #include "../../io/io.h" -#include "../../graphics/vga.h" +#include "../../graphics/graphics.h" unsigned char keymap[128] = { 0 /*E*/, 27, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-', '=', '\b', diff --git a/src/input/ps2/mouse.c b/src/input/ps2/mouse.c index 1819b05..49c5a6c 100644 --- a/src/input/ps2/mouse.c +++ b/src/input/ps2/mouse.c @@ -1,6 +1,5 @@ #include "../../io/io.h" #include "../../interrupts/interrupts.h" -#include "../../graphics/vga.h" char mouse_cycle = 0; signed char mouse_byte[3], mouse_ex[3]; |