diff options
author | Marvin Borner | 2019-10-26 16:37:33 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-26 16:37:33 +0200 |
commit | 5668d7cfc5bb05057c5368eceb2bbb8a6a45a8c3 (patch) | |
tree | 44229f0221635a5cee11178a80119572aedf3825 /src/kernel/input/ps2/mouse.c | |
parent | 5a4db78897063e5b09a676b02fec3ba4a2965921 (diff) |
Removed VGA driver support
Diffstat (limited to 'src/kernel/input/ps2/mouse.c')
-rw-r--r-- | src/kernel/input/ps2/mouse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/input/ps2/mouse.c b/src/kernel/input/ps2/mouse.c index a637347..15522f6 100644 --- a/src/kernel/input/ps2/mouse.c +++ b/src/kernel/input/ps2/mouse.c @@ -1,6 +1,6 @@ #include "../../interrupts/interrupts.h" #include "../../io/io.h" -#include "../../graphics/graphics.h" +#include "../../graphics/vesa.h" char mouse_cycle = 0; signed char mouse_byte[3]; @@ -32,7 +32,7 @@ void mouse_handler(struct regs *a_r) { } if (mouse_but_1 == 1) - terminal_write_line("CLICK!"); + vesa_draw_string("CLICK!\n"); } void mouse_wait(unsigned char a_type) { |