committing intention with new keyboard module

functions to be implemented still*
This commit is contained in:
shockrahwow 2019-11-29 13:09:41 -08:00
parent a9d947c51f
commit b74cc93f8d

9
kbd.h Normal file
View File

@ -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