jankos/kbd.h
shockrahwow b74cc93f8d committing intention with new keyboard module
functions to be implemented still*
2019-11-29 13:09:41 -08:00

10 lines
159 B
C

#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