blob: 6f2c572ac1c5086fc02f679474e133600de50bb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* this is both a PS/2 keyboard AND a PS/2 MOUSE driver */
#include <stdint.h>
#define PS2_SCROLL_LOCK (1 << 0)
#define PS2_NUM_LOCK (1 << 1)
#define PS2_CAPS_LOCK (1 << 2)
void ps2_set_leds(uint8_t status);
void ps2_init(void);
|