mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 20:38:05 +11:00
17 lines
406 B
C
17 lines
406 B
C
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
#include "port.h"
|
||
|
|
||
|
#define KBD_BUFSZ 0x10
|
||
|
|
||
|
typedef struct {
|
||
|
uint8_t kc; // last keycode to be pressed. 0 means none.
|
||
|
bool breaking; // whether we should send 0xf0 before kc
|
||
|
Tristate *TH;
|
||
|
} Kbd;
|
||
|
|
||
|
void kbd_init(Kbd *kbd, Tristate *TH);
|
||
|
void kbd_pressshift(Kbd *kbd, bool ispressed);
|
||
|
void kbd_presskey(Kbd *kbd, uint8_t keycode);
|
||
|
uint8_t kbd_rd(Kbd *kbd);
|