swissChili | d813792 | 2021-02-17 15:34:07 -0800 | [diff] [blame^] | 1 | #include "vga.h" |
2 | #include "descriptor_tables.h" | ||||
3 | |||||
4 | int 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 | } |