summaryrefslogtreecommitdiff
path: root/kernel/include/keyboard.h
blob: 050507d737cead481eb6b4027497dfbea3b95656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef KEYBOARD_H
#define KEYBOARD_H

#include <stdint.h>

#define KEYBOARD_DATA_PORT	0x60
#define KEYBOARD_STATUS_PORT	0x64

uint32_t stoi(const char *s);
void itos(uint32_t num, char** s);
void print_char(char c);
void print_string(char* s);
void keyboard_handler(void);

#endif