bringelle/src/bringelle.c

33 lines
530 B
C
Raw Normal View History

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