summaryrefslogtreecommitdiff
path: root/src/include/klog.h
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcspace.com>2021-08-29 02:52:48 -0500
committerBrett Weiland <brett_weiland@bpcspace.com>2021-08-29 02:52:48 -0500
commit1f71b9576db536af84155363e14fc49e92de2eef (patch)
tree23f65a31cc89785befb70517b203625e2296326f /src/include/klog.h
parentdc0e84d5779db68e081c667faadc19a20de861ea (diff)
backup 8.29.21
Diffstat (limited to 'src/include/klog.h')
-rw-r--r--src/include/klog.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/include/klog.h b/src/include/klog.h
new file mode 100644
index 0000000..1a6d3af
--- /dev/null
+++ b/src/include/klog.h
@@ -0,0 +1,20 @@
+#ifndef _SERIAL_H_
+#define _SERIAL_H_
+
+#include <stdint.h>
+#include <stdbool.h>
+
+
+
+
+
+void init_klog();
+void serial_out(uint16_t port, char *string);
+void _putchar_serial(uint16_t port, char character);
+void move_cursor(unsigned int x, unsigned int y);
+
+
+void clear_screen();
+
+
+#endif