aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 947c0e1..a4b290c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -4,6 +4,7 @@
#include <def.h>
#include <interrupts.h>
#include <keyboard.h>
+#include <print.h>
#include <serial.h>
#include <vesa.h>
@@ -23,7 +24,7 @@ void main(struct mem_info *mem_info, struct vid_info *vid_info)
vesa_fill(terminal_background);
serial_install();
- serial_print("hello\n");
+ printf("hello");
while (1) {
};