bringelle/src/bringelle.c

25 lines
348 B
C
Raw Normal View History

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