aboutsummaryrefslogtreecommitdiff
path: root/src/bringelle.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bringelle.c')
-rw-r--r--src/bringelle.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/bringelle.c b/src/bringelle.c
index f6b099c..5431ad4 100644
--- a/src/bringelle.c
+++ b/src/bringelle.c
@@ -1,23 +1,15 @@
-#include "utils/print.h"
-#include "utils/asm.h"
+#include "libc/stdio.h"
#include "utils/pic.h"
-#include "utils/8042.h"
#include "boot/multiboot.h"
-extern char *name_addr;
-
void bringelle(){
clear();
- printc("Booting Bringelle...\n",GREEN);
- pic_enable_interrupt();
+ printc("Booting Bringelle...",GREEN);
- // Search for bootloader informations
- MBI_TAG_BL_NAME bl_infos;
- if(!mb_load_bl_name(&bl_infos)){
- print(bl_infos.name);
- print(" detected!\n");
- }
+ // Kernel boot sequence
+ pic_enable_interrupt();
+ printc(" done!\n",GREEN);
while(1);
}