diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-29 19:56:40 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-29 19:56:40 +0200 |
| commit | 47d22a238a6c5d60c6abfac724e6ad91885cdd67 (patch) | |
| tree | bd3893777b58aac7c94d68fe2a4ba57cfbdb38ec /kernel/keyboard.c | |
| parent | 659f1f1ae057c82a154a1fd32cc9dca040979daa (diff) | |
added paging support
Diffstat (limited to 'kernel/keyboard.c')
| -rw-r--r-- | kernel/keyboard.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/kernel/keyboard.c b/kernel/keyboard.c index ede71a2..7b08098 100644 --- a/kernel/keyboard.c +++ b/kernel/keyboard.c @@ -1,18 +1,15 @@ #include "kernel.h" #include "x86.h" #include "console.h" + #include "../lib/logger/log.h" // logger facilities #define FOOLOS_MODULE_NAME "keyboard" /// keyboard driver //// - -//static int cursor=0; -//static char last_code=0; - void keyboard_handle(uint8_t in) { - log(FOOLOS_MODULE_NAME,FOOLOS_LOG_INFO,"scancode 0x%x",in); + log(FOOLOS_MODULE_NAME,FOOLOS_LOG_FINE,"scancode 0x%x",in); int i=0; // |
