summaryrefslogtreecommitdiff
path: root/src/kernel/kbd.h
blob: 8a4ed8bcbb21c0f668deb9b1f8509952cbde0711 (plain) (blame)
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