aboutsummaryrefslogtreecommitdiff
path: root/drivers/include/ps2.h
blob: 924ef2462b47f1c97411842a40b4969252cd5b9b (plain)
1
2
3
4
5
6
7
8
9
#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);