mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
1. fix handling of caps-lock 2. removed support for returning scancode/bitfields for hbios call
13 lines
303 B
C
13 lines
303 B
C
#ifndef __KYB_DRIVER__
|
|
#define __KYB_DRIVER__
|
|
|
|
#include <ch376.h>
|
|
#include <stdint.h>
|
|
|
|
extern void usb_kyb_init(const uint8_t dev_index) __sdcccall(1);
|
|
extern uint8_t usb_kyb_flush() __sdcccall(1);
|
|
extern uint8_t usb_kyb_status() __sdcccall(1);
|
|
extern uint16_t usb_kyb_read();
|
|
|
|
#endif
|