aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/io/io.h')
-rw-r--r--src/kernel/io/io.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/kernel/io/io.h b/src/kernel/io/io.h
index 8e39f84..e72d794 100644
--- a/src/kernel/io/io.h
+++ b/src/kernel/io/io.h
@@ -45,4 +45,15 @@ void send_w(uint16_t port, uint16_t data);
*/
void send_l(uint16_t port, uint32_t data);
+/**
+ * Initialize the serial conenction
+ */
+void init_serial();
+
+/**
+ * Write a string to the serial port (QEMU logging)
+ * @param data
+ */
+void write_serial(char *data);
+
#endif