forked from Bananymous/banan-os
Kernel: Serial output uses now "\r\n" as line endings
This commit is contained in:
parent
979a5960e4
commit
5106552bfd
|
@ -6,7 +6,8 @@
|
|||
#define dprintln(...) \
|
||||
do { \
|
||||
BAN::Formatter::print(Serial::serial_putc, "[{5}.{3}] {}({}): ", PIT::ms_since_boot() / 1000, PIT::ms_since_boot() % 1000, __FILE__, __LINE__); \
|
||||
BAN::Formatter::println(Serial::serial_putc, __VA_ARGS__); \
|
||||
BAN::Formatter::print(Serial::serial_putc, __VA_ARGS__); \
|
||||
BAN::Formatter::print(Serial::serial_putc, "\r\n"); \
|
||||
} while(false)
|
||||
|
||||
#define dwarnln(...) \
|
||||
|
|
Loading…
Reference in New Issue