summaryrefslogtreecommitdiffhomepage
path: root/DDK/KernelPrint.h
blob: a26d49c43b7e01e2e1fcbb248283ef71bd4b0a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -------------------------------------------

	Copyright Zeta Electronics Corporation

	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);