2021-04-09 10:29:23 +02:00
|
|
|
#include "libc/stdio.h"
|
2021-04-06 15:55:30 +02:00
|
|
|
#include "utils/pic.h"
|
2021-04-08 19:06:44 +02:00
|
|
|
#include "boot/multiboot.h"
|
2021-04-08 13:07:17 +02:00
|
|
|
|
2021-04-04 11:19:55 +02:00
|
|
|
void bringelle(){
|
2021-04-08 19:06:44 +02:00
|
|
|
clear();
|
2021-04-09 10:29:23 +02:00
|
|
|
printc("Booting Bringelle...",GREEN);
|
2021-04-08 13:07:17 +02:00
|
|
|
|
2021-04-09 10:29:23 +02:00
|
|
|
// Kernel boot sequence
|
|
|
|
pic_enable_interrupt();
|
2021-04-08 13:07:17 +02:00
|
|
|
|
2021-04-09 10:29:23 +02:00
|
|
|
printc(" done!\n",GREEN);
|
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++;
|
|
|
|
}
|
|
|
|
}
|