2019-07-08 12:56:36 +02:00
|
|
|
/**************************************
|
2021-01-02 17:49:15 +01:00
|
|
|
* VulcanOS Kernel *
|
2019-07-08 12:56:36 +02:00
|
|
|
* Developed by Marco 'icebit' Cetica *
|
2021-01-02 17:49:15 +01:00
|
|
|
* (c) 2019-2021 *
|
2019-07-08 12:56:36 +02:00
|
|
|
* Released under GPLv3 *
|
|
|
|
* https://github.com/ice-bit/iceOS *
|
|
|
|
***************************************/
|
|
|
|
#ifndef _KEYBOARD_H_
|
|
|
|
#define _KEYBOARD_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-07-08 18:43:45 +02:00
|
|
|
#define KB_DATA_PORT 0x60 // Keyboard serial port
|
2019-07-08 12:56:36 +02:00
|
|
|
|
2019-07-08 18:43:45 +02:00
|
|
|
void init_keyboard();
|
2019-07-08 12:56:36 +02:00
|
|
|
|
2021-01-02 17:49:15 +01:00
|
|
|
#endif
|