2021-04-04 11:19:55 +02:00
|
|
|
#include "utils/print.h"
|
2021-04-05 20:50:58 +02:00
|
|
|
#include "utils/asm.h"
|
2021-04-06 15:55:30 +02:00
|
|
|
#include "utils/pic.h"
|
2021-04-08 13:07:17 +02:00
|
|
|
#include "utils/8042.h"
|
2021-04-08 19:06:44 +02:00
|
|
|
#include "boot/multiboot.h"
|
2021-04-08 13:07:17 +02:00
|
|
|
|
|
|
|
extern char *name_addr;
|
2021-04-04 11:19:55 +02:00
|
|
|
|
|
|
|
void bringelle(){
|
2021-04-08 19:06:44 +02:00
|
|
|
clear();
|
|
|
|
printc("Booting Bringelle...\n",GREEN);
|
|
|
|
pic_enable_interrupt();
|
2021-04-08 13:07:17 +02:00
|
|
|
|
2021-04-08 19:06:44 +02:00
|
|
|
// Search for bootloader informations
|
2021-04-08 13:07:17 +02:00
|
|
|
MBI_TAG_BL_NAME bl_infos;
|
|
|
|
if(!mb_load_bl_name(&bl_infos)){
|
|
|
|
print(bl_infos.name);
|
2021-04-08 19:06:44 +02:00
|
|
|
print(" detected!\n");
|
2021-04-08 13:07:17 +02:00
|
|
|
}
|
|
|
|
|
2021-04-04 11:19:55 +02:00
|
|
|
while(1);
|
|
|
|
}
|
2021-04-08 19:06:44 +02:00
|
|
|
|
|
|
|
void clock(){
|
|
|
|
static int tic=0;
|
|
|
|
static int sec=0;
|
|
|
|
tic++;
|
|
|
|
if(tic>=20){
|
|
|
|
tic=0;
|
|
|
|
sec++;
|
|
|
|
}
|
|
|
|
}
|