11 lines
184 B
C
11 lines
184 B
C
#ifndef ULIB_DEVICES_PS2KB_H_
|
|
#define ULIB_DEVICES_PS2KB_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define PS2KB_C(x) ((x) - '@')
|
|
|
|
int32_t dev_ps2kb_read(int32_t *ch);
|
|
|
|
#endif // ULIB_DEVICES_PS2KB_H_
|