Convert from uart_puts to kprintf

This commit is contained in:
Imbus 2025-09-02 00:17:34 +02:00
parent 7018424278
commit a6ae43f583
4 changed files with 14 additions and 24 deletions

View file

@ -4,7 +4,3 @@
void uart_putc(char c) {
*UART_BASE = c;
}
void uart_puts(const char *s) {
while (*s) uart_putc(*s++);
}