mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-01 21:15:20 -08:00
8 lines
133 B
C
8 lines
133 B
C
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
void keyboard_init(void);
|
|
char keyboard_get_char(void); // Blocking read from buffer
|
|
|
|
#endif
|