blob: 48549242b97d55f85e33b6adcf5315396a850de1 [file] [log] [blame]
#include "vga.h"
#include "descriptor_tables.h"
int main(void *mboot)
{
vga_clear();
vga_set_color(LIGHT_BLUE, BLACK);
vga_write("Hello!\nWelcome to Bluejay OS\n");
vga_set_color(WHITE, BLACK);
init_idt();
//init_descriptor_tables();
//asm volatile("int $0x03");
return 0xCAFEBABE;
}