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"
|
|
|
|
#include "utils/multiboot.h"
|
|
|
|
|
|
|
|
extern char *name_addr;
|
2021-04-04 11:19:55 +02:00
|
|
|
|
|
|
|
void bringelle(){
|
2021-04-08 13:07:17 +02:00
|
|
|
|
|
|
|
// clear();
|
|
|
|
//print("Booting Bringelle...");
|
|
|
|
//pic_enable_interrupt();
|
2021-04-04 14:03:26 +02:00
|
|
|
print("Booting Bringelle...");
|
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);
|
|
|
|
print(" detected!");
|
|
|
|
}
|
|
|
|
|
2021-04-05 20:50:58 +02:00
|
|
|
|
2021-04-04 11:19:55 +02:00
|
|
|
while(1);
|
|
|
|
}
|