mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 19:33:15 +01:00
9 lines
96 B
C
9 lines
96 B
C
#include <arch/uart.h>
|
|
|
|
void putc(char c)
|
|
{
|
|
if (c == '\n')
|
|
uart_putc('\r');
|
|
uart_putc(c);
|
|
}
|