summaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/keyboard.h6
-rw-r--r--kernel/include/paging.h6
2 files changed, 12 insertions, 0 deletions
diff --git a/kernel/include/keyboard.h b/kernel/include/keyboard.h
index 3a1b7f1..050507d 100644
--- a/kernel/include/keyboard.h
+++ b/kernel/include/keyboard.h
@@ -1,9 +1,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
diff --git a/kernel/include/paging.h b/kernel/include/paging.h
new file mode 100644
index 0000000..79d9dea
--- /dev/null
+++ b/kernel/include/paging.h
@@ -0,0 +1,6 @@
+#ifndef PAGING_H
+#define PAGING_H
+
+void init_paging(void);
+
+#endif