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