#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include void kernel_main(uint32_t magic, uint32_t multiboot_address) { if (magic != MULTIBOOT_BOOTLOADER_MAGIC) { vga_log("Invalid boot magic!"); halt_loop(); } if (multiboot_address & 7) { vga_log("Unaligned mbi!"); halt_loop(); } vga_log("Installing basic features of Melvix..."); // Install features gdt_install(); init_serial(); idt_install(); isrs_install(); irq_install(); paging_install(multiboot_address); multiboot_parse(multiboot_address); // Install drivers cli(); timer_install(); mouse_install(); keyboard_install(); pci_remap(); network_install(); sti(); memory_print(); rtc_print(); ata_init(); ext2_init_fs(); panic("YAY"); load_binaries(); set_optimal_resolution(); // tasking_install(); #ifdef INSTALL_MELVIX panic("Installation isn't supported right now!"); #endif // load_elf((char *)userspace); // syscalls_install(); // exec(userspace); // panic("This should NOT happen!"); // asm ("div %0" :: "r"(0)); // Exception testing x/0 }