summaryrefslogtreecommitdiff
path: root/include/kernel/con.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/kernel/con.h')
-rw-r--r--include/kernel/con.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/kernel/con.h b/include/kernel/con.h
new file mode 100644
index 0000000..4e564ed
--- /dev/null
+++ b/include/kernel/con.h
@@ -0,0 +1,14 @@
+/*
+ * con.h
+ *
+ * Basic VGA text console
+ */
+
+#ifndef _CON_H
+#define _CON_H
+
+void con_init(void);
+
+void con_print(char*);
+
+#endif