#include #include #include #include #include #include #include #include void kmain(struct boot_info *info) { memory_init(&info->map); pci_init(); fb_init(1024, 768); //acpi_init(info->acpi_table); kprintf("enterd kmain\n"); *(char *)(0xB8000 + 0x144) = 'h'; *(char *)(0xB8000 + 0x146) = 'i'; while (1) { __asm__("hlt;"); // loop so we dont halt // this allows interrupts to fire } }