summaryrefslogtreecommitdiff
path: root/driver/keyboard.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-28 00:29:02 +0200
committerMiguel <m.i@gmx.at>2018-09-28 00:29:02 +0200
commit9a29d452d03a63f39a80c0640b7747d8508568e2 (patch)
tree05adc15fac805f019af21107a7e3d84135f483f9 /driver/keyboard.h
parentb3ec24b054fe36c7368048c3f1d0c46ed8fbb55e (diff)
moved mouse and kb, fixed mouse a bit
Diffstat (limited to 'driver/keyboard.h')
-rw-r--r--driver/keyboard.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/driver/keyboard.h b/driver/keyboard.h
index 0e746ba..98f1f4e 100644
--- a/driver/keyboard.h
+++ b/driver/keyboard.h
@@ -5,5 +5,9 @@
// http://www.computer-engineering.org/ps2keyboard/scancodes1.html
// */
+
+#include <stdbool.h>
+
void keyboard_init(uint32_t s);
void keyboard_handle(uint8_t in);
+bool keyboard_worker();