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