summaryrefslogtreecommitdiffstats
path: root/kernel/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/main.c')
-rw-r--r--kernel/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/main.c b/kernel/main.c
index c7665a1..5b146bb 100644
--- a/kernel/main.c
+++ b/kernel/main.c
@@ -1,4 +1,4 @@
-#include "video-vga.h"
+#include "video/console/vgacon.h"
#include "gdt.h"
/* Check if the compiler thinks you are targeting the wrong operating system. */
@@ -14,7 +14,7 @@ void kernel_main(void)
init_segmentation();
/* Initialize VGA video hardware */
- vga_init();
+ vgacon_init();
- vga_print("Welcome to MFSOS!\n\t");
+ vgacon_print("Welcome to MFSOS!\n");
}