summaryrefslogtreecommitdiff
path: root/sys/kern/kernel_earlyprintf.c
blob: e6c85c414ebd0d7d1ff89c221c2abfe8ea899b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <kernel_earlyprintf.h>
#include <sbi.h>

int
kernel_earlyputs(const char *str)
{
	do {
		sbi_console_putchar(*str);
	} while (*(str++) != '\0');
}