1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
Files
rzzzwilson.pymlac/vimlac/kbd.h
2015-10-15 19:45:29 +07:00

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