aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/input/input.h
blob: d387172dd30599264ed4e8482f3c92f802437025 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MELVIX_INPUT_H
#define MELVIX_INPUT_H

#include <stdint.h>

/**
 * Initialize the mouse IRQ handler
 */
void mouse_install();

/**
 * Initialize the us keyboard layout,
 * keyboard rate and IRQ handler
 */
void keyboard_install();

char wait_scancode();

#endif