// MIT License, Copyright (c) 2021 Marvin Borner #include #include #include #include #include #include #include /** * Entry */ int start(void); int start(void) { vga_clear(); serial_install(); pic_install(); idt_install(); pci_probe(); dev_print(); // Sleep and wait for interrupts while (1) __asm__ volatile("hlt"); return 0; }