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