From b74cc93f8d7e303e838cbb506c46822376b4aaba Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Fri, 29 Nov 2019 13:09:41 -0800 Subject: [PATCH] committing intention with new keyboard module functions to be implemented still* --- kbd.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 kbd.h diff --git a/kbd.h b/kbd.h new file mode 100644 index 0000000..6b82bce --- /dev/null +++ b/kbd.h @@ -0,0 +1,9 @@ +#ifndef KBD_H +#define KBD_H +#include "types.h" +#include "interrupts.h" + +void kbd_install_keyboard(void); + +void kbd_read_key(struct cpu_reg_state* cpu); +#endif