12 lines
182 B
C
12 lines
182 B
C
#ifndef KBD_H
|
|
#define KBD_H
|
|
#include "types.h"
|
|
#include "interrupts.h"
|
|
|
|
#define KBD_PORT 0x60
|
|
|
|
void kbd_install_keyboard(void);
|
|
|
|
void kbd_read_key(struct cpu_reg_state* cpu);
|
|
#endif
|