aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/input
diff options
context:
space:
mode:
authorMarvin Borner2019-10-03 00:39:11 +0200
committerMarvin Borner2019-10-03 00:39:11 +0200
commitdc7f3bccef43d1483a8a234df85f67f6869e75ba (patch)
tree4f88e994c33c5cfc0062e16a2f99a79236da95f8 /src/kernel/input
parent7e81739528577c2e7f92b42b2d186b63fdd3d6d5 (diff)
Began replacement of VGA functions
Why does VGA/VESA not work when running on real hardware?
Diffstat (limited to 'src/kernel/input')
-rw-r--r--src/kernel/input/ps2/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/input/ps2/keyboard.c b/src/kernel/input/ps2/keyboard.c
index 100c0d8..262178d 100644
--- a/src/kernel/input/ps2/keyboard.c
+++ b/src/kernel/input/ps2/keyboard.c
@@ -52,7 +52,7 @@ void keyboard_rate() {
send_b(0x60, 0x0); // Rate{00000} Delay{00} 0
}
-/* Installs the keyboard handler into IRQ1 */
+// Installs the keyboard handler into IRQ1
void keyboard_install() {
keyboard_rate();
irq_install_handler(1, keyboard_handler);