blob: 98f1f4ef328836ae6b126c98cf0a4275bc8b81fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* @file
*
/// idiots keyboard driver ////
// http://www.computer-engineering.org/ps2keyboard/scancodes1.html
// */
#include <stdbool.h>
void keyboard_init(uint32_t s);
void keyboard_handle(uint8_t in);
bool keyboard_worker();
|