bsp/motorola_powerpc: Fix bootloader output

This commit is contained in:
Sebastian Huber
2019-05-07 08:44:33 +02:00
parent 8bd4f61c30
commit f4db49a1ab

View File

@@ -429,6 +429,10 @@ void debug_putc(const char c)
void void
debug_putc_onlcr(const char c) debug_putc_onlcr(const char c)
{ {
if (c == '\n') {
debug_putc('\r');
}
debug_putc(c); debug_putc(c);
} }