blob: 48549242b97d55f85e33b6adcf5315396a850de1 [file] [log] [blame]
swissChilid8137922021-02-17 15:34:07 -08001#include "vga.h"
2#include "descriptor_tables.h"
3
4int main(void *mboot)
5{
6 vga_clear();
7 vga_set_color(LIGHT_BLUE, BLACK);
8 vga_write("Hello!\nWelcome to Bluejay OS\n");
9
10 vga_set_color(WHITE, BLACK);
11
12 init_idt();
13
14 //init_descriptor_tables();
15
16 //asm volatile("int $0x03");
17
18 return 0xCAFEBABE;
19}