diff --git a/sys/kern/printf.c b/sys/kern/printf.c index 202b773..1356d09 100644 --- a/sys/kern/printf.c +++ b/sys/kern/printf.c @@ -201,6 +201,9 @@ again: void consoleputc(int c,void* handle) { + if (c == '\n') { + Console_Putc('\r'); + } Console_Putc(c); } @@ -225,7 +228,5 @@ void Debug_Assert(const char *fmt, ...) va_end(ap); Panic(""); - - return; }