1 2 3 4 5 6 7 8 9 10
#ifndef KBD_H #define KBD_H #include <stdint.h> void init_kbd(); uint32_t get_key_code(); void on_kbd_isr(); #endif