14 lines
197 B
C
14 lines
197 B
C
|
#ifndef KEYBOARD_H
|
||
|
#define KEYBOARD_H
|
||
|
|
||
|
#define KEYBOARD_IO 0x60
|
||
|
#define KEYBOARD_STATUS 0x64
|
||
|
|
||
|
#define KEYBOARD_RELEASE 0x80
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int8_t getkey(void);
|
||
|
|
||
|
#endif /* !KEYBOARD_H */
|