blob: 7e03fd7223c8a466926c91a5cb60b81becf8a70d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef KBD_H
#define KBD_H
#include <stdbool.h>
#include <stdint.h>
#include <keypack.h>
void init_kbd();
enum kbd_isr_result {
NORMAL,
DUMP,
SHIFT_DUMP
} on_kbd_isr();
#endif
|