blob: 6d395f3319f53d68c491b30c607c0228d963ac61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef KEYBOARD_H
#define KEYBOARD_H
#include <types.h>
#define KEYBOARD_DATA_PORT 0x60
#define KEYBOARD_STATUS_PORT 0x64
uint64_t stoi(const char *s);
void itos(uint64_t num, char* s);
void keyboard_handler(void);
#endif
|