diff options
author | Marvin Borner | 2019-09-15 18:06:14 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-15 18:06:14 +0200 |
commit | d7acec1be838230f3188b3887977ca185e38f1a4 (patch) | |
tree | c0b526422efc6ebe9f2efac14995de875e9ee108 /src/kernel.c | |
parent | d3bb62c3b99b3b7108de0c2aa4d1d1ead0bd3fb8 (diff) |
Added basic PS/2 keyboard driver
Diffstat (limited to 'src/kernel.c')
-rw-r--r-- | src/kernel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel.c b/src/kernel.c index 73bed6f..e4b8a37 100644 --- a/src/kernel.c +++ b/src/kernel.c @@ -11,8 +11,9 @@ void kernel_main(void) { isrs_install(); irq_install(); timer_install(); + keyboard_install(); mouse_install(); terminal_write_string("Melvix loaded successfully!\n"); - // __asm__ ("div %0" :: "r"(0)); Exception testing x/0 + // __asm__ ("div %0" :: "r"(0)); // Exception testing x/0 }
\ No newline at end of file |