2024-01-31 17:49:06 +00:00
|
|
|
#include <acpi.h>
|
2024-01-29 00:27:23 +00:00
|
|
|
#include <memory.h>
|
2024-01-27 08:37:48 +00:00
|
|
|
#include <lib.h>
|
|
|
|
#include <serial.h>
|
2024-01-27 10:16:57 +00:00
|
|
|
#include <fb.h>
|
2024-01-29 00:27:23 +00:00
|
|
|
#include <shim.h>
|
2024-01-27 23:30:34 +00:00
|
|
|
|
2024-01-29 00:27:23 +00:00
|
|
|
void kmain(struct boot_info *info) {
|
2024-01-31 17:49:06 +00:00
|
|
|
memory_init(&info->map);
|
2024-01-30 21:55:15 +00:00
|
|
|
//acpi_init(info->acpi_table);
|
|
|
|
//fb_init(1024, 768);
|
2024-01-30 21:46:38 +00:00
|
|
|
|
2024-02-01 17:48:55 +00:00
|
|
|
kprintf("enterd kmain\n");
|
|
|
|
|
2024-01-30 02:10:29 +00:00
|
|
|
*(char*)(0xB8000 + 0x144) = 'h';
|
|
|
|
*(char*)(0xB8000 + 0x146) = 'i';
|
2024-01-30 21:55:15 +00:00
|
|
|
|
2024-01-30 00:19:29 +00:00
|
|
|
while (1) {
|
2024-02-01 17:48:55 +00:00
|
|
|
//kprintf("ret: 0x%p\n", kalloc(2));
|
2024-01-30 00:19:29 +00:00
|
|
|
// loop so we dont halt
|
|
|
|
// this allows interrupts to fire
|
|
|
|
}
|
2024-01-27 03:29:49 +00:00
|
|
|
}
|