aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/system.h
diff options
context:
space:
mode:
authorMarvin Borner2019-10-03 00:39:11 +0200
committerMarvin Borner2019-10-03 00:39:11 +0200
commitdc7f3bccef43d1483a8a234df85f67f6869e75ba (patch)
tree4f88e994c33c5cfc0062e16a2f99a79236da95f8 /src/kernel/system.h
parent7e81739528577c2e7f92b42b2d186b63fdd3d6d5 (diff)
Began replacement of VGA functions
Why does VGA/VESA not work when running on real hardware?
Diffstat (limited to 'src/kernel/system.h')
-rw-r--r--src/kernel/system.h6
1 files changed, 3 insertions, 3 deletions
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);
}