mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-30 00:25:18 -08:00
Update keyboard.h
fixed typo in header include
This commit is contained in:
@@ -1,11 +1,12 @@
|
|||||||
#ifndef KEYBOARD_H
|
#ifndef KEYBOARD_H
|
||||||
#define KEYBOARD_H
|
#define KEYBOARD_H
|
||||||
|
|
||||||
#include <stint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
void keyboard_init(void);
|
void keyboard_init(void);
|
||||||
void keyboard_buffer_add(char c);
|
void keyboard_buffer_add(char c);
|
||||||
char keyboard_get_char(void); // Blocking read from buffer
|
char keyboard_get_char(void);
|
||||||
|
|
||||||
extern const char scancode_map[128];
|
extern const char scancode_map[128];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user