diff --git a/common/console_simple.c b/common/console_simple.c index ee87b8c..385da2f 100644 --- a/common/console_simple.c +++ b/common/console_simple.c @@ -27,6 +27,8 @@ void console_putc(unsigned int ch, char c) { if (!console) { + if (c == '\n') + putc_ll('\r'); putc_ll(c); return; }