blob: 77a93b84de3af6818c2ac2419a76a74c89b60a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @file
*
//http://forum.osdev.org/viewtopic.php?t=10247
//based on Mouse.inc by SANiK
//License: Use as you wish, except to cause damage
*/
#include <stdint.h>
#include <stdbool.h>
void mouse_handler(uint8_t byte);
void mouse_init();
bool mouse_worker();
|