blob: b08593f93d5a05b643edfcc3c0d5ad41c21ea2eb [file] [log] [blame]
// SPDX-License-Identifier: Apache-2.0
void putchar(char c)
{
if (c == '\n')
putchar('\r');
reg_uart_data = c;
}
void print(const char *p)
{
while (*p)
putchar(*(p++));
}