mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-25 14:25:20 -08:00
12 lines
224 B
C
12 lines
224 B
C
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#include <stint.h>
|
|
|
|
void keyboard_init(void);
|
|
void keyboard_buffer_add(char c);
|
|
char keyboard_get_char(void); // Blocking read from buffer
|
|
extern const char scancode_map[128];
|
|
|
|
#endif
|