From d7acec1be838230f3188b3887977ca185e38f1a4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 15 Sep 2019 18:06:14 +0200 Subject: Added basic PS/2 keyboard driver --- src/input/input.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/input/input.h (limited to 'src/input/input.h') diff --git a/src/input/input.h b/src/input/input.h new file mode 100644 index 0000000..60d2f79 --- /dev/null +++ b/src/input/input.h @@ -0,0 +1,10 @@ +#ifndef MELVIX_INPUT_H +#define MELVIX_INPUT_H + +void mouse_install(); + +char get_mouse(int n); + +void keyboard_install(); + +#endif -- cgit v1.2.3