mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
13 lines
164 B
C
Executable File
13 lines
164 B
C
Executable File
/*
|
|
* Interface for the vimlac KB device (keyboard).
|
|
*/
|
|
|
|
#ifndef KB_H
|
|
#define KB_H
|
|
|
|
void kb_clear_flag(void);
|
|
BYTE kb_get_char(void);
|
|
bool kb_ready(void);
|
|
|
|
#endif
|