From dc7f3bccef43d1483a8a234df85f67f6869e75ba Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 3 Oct 2019 00:39:11 +0200 Subject: Began replacement of VGA functions Why does VGA/VESA not work when running on real hardware? --- src/kernel/system.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kernel/system.h') diff --git a/src/kernel/system.h b/src/kernel/system.h index 57db4c9..3f5b595 100644 --- a/src/kernel/system.h +++ b/src/kernel/system.h @@ -87,11 +87,11 @@ static inline void kernel_time() { * @param msg The information */ static inline void info(char *msg) { - terminal_set_color(10); + terminal_set_color(9); kernel_time(); terminal_write_string("INFO: "); terminal_write_string(msg); - terminal_write_string("\n"); + terminal_write_string("\r"); terminal_set_color(7); } @@ -105,7 +105,7 @@ static inline void warn(char *msg) { kernel_time(); terminal_write_string("WARNING: "); terminal_write_string(msg); - terminal_write_string("\n"); + terminal_write_string("\r"); terminal_set_color(7); } -- cgit v1.2.3