mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
25 lines
737 B
C
Executable File
25 lines
737 B
C
Executable File
/******************************************************************************\
|
|
* kbd.h *
|
|
* ------- *
|
|
* *
|
|
* Implements all display CPU instructions. *
|
|
* *
|
|
\******************************************************************************/
|
|
|
|
#ifndef KBD_H
|
|
#define KBD_H
|
|
|
|
#include "imlac.h"
|
|
|
|
/******
|
|
* Exported functions.
|
|
******/
|
|
|
|
|
|
void kbd_clear_flag(void);
|
|
WORD kbd_get_char(void);
|
|
bool kbd_ready(void);
|
|
|
|
|
|
#endif
|