#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, multiboot_info_t *grub_header) { if (magic != MULTIBOOT_BOOTLOADER_MAGIC) { vga_log("Invalid boot magic!"); halt_loop(); } vga_log("Installing basic features of Melvix..."); // Install features gdt_install(); init_serial(); acpi_install(); idt_install(); isrs_install(); irq_install(); memory_init(grub_header); paging_install(); memory_print(); load_binaries(); set_optimal_resolution(); // Install drivers cli(); timer_install(); mouse_install(); keyboard_install(); pci_remap(); network_install(); sti(); log("%x", 0x42); vfs_init(); ata_init(); ext2_init("/dev/hda", "/"); // tasking_install(); // Get hardware information // get_smbios(); // Print total memory info("Total memory found: %dMiB", (memory_get_all() >> 10) + 1); log("Total memory found: %dMiB", (memory_get_all() >> 10) + 1); #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 }