summaryrefslogtreecommitdiffhomepage
path: root/dev/ddk/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ddk/io.h')
-rw-r--r--dev/ddk/io.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/dev/ddk/io.h b/dev/ddk/io.h
new file mode 100644
index 00000000..ece8d059
--- /dev/null
+++ b/dev/ddk/io.h
@@ -0,0 +1,18 @@
+/* -------------------------------------------
+
+ Copyright ZKA Technologies.
+
+ Purpose: DDK Text I/O.
+
+------------------------------------------- */
+
+#pragma once
+
+#include <ddk/str.h>
+
+/// @brief print character into UART.
+DK_EXTERN void KernelPrintChar(const char ch);
+
+/// @brief print string to UART.
+/// @param message string to transmit to UART.
+DK_EXTERN void KernelPrintStr(const char* message);