The VT102 terminal emulation on minicom treats \r and \n as separate
operations, so this makes the logging print prettier there without
impacting the stdio serial of qemu either.
/// println prints a formatted string to the [CONSOLE] with a trailing newline character.
#[macro_export]
macro_rules! println {
- ($fmt:expr) => ($crate::print!(concat!($fmt, "\n")));
- ($fmt:expr, $($arg:tt)*) => ($crate::print!(concat!($fmt, "\n"), $($arg)*));
+ ($fmt:expr) => ($crate::print!(concat!($fmt, "\r\n")));
+ ($fmt:expr, $($arg:tt)*) => ($crate::print!(concat!($fmt, "\r\n"), $($arg)*));
}