1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/main.c

22 lines
412 B
C
Raw Normal View History

2017-11-01 04:37:39 -04:00
#include <kernelmq/multiboot.h>
2017-11-01 01:01:29 -04:00
#include "logger.h"
#include "protected.h"
2017-11-01 01:01:29 -04:00
2017-11-01 10:45:01 -04:00
void main(struct KernelMQ_Multiboot_Info multiboot_info)
2017-11-01 00:43:42 -04:00
{
2017-11-01 01:01:29 -04:00
logger_initialize();
2017-11-01 04:25:39 -04:00
2017-11-01 10:45:01 -04:00
print_multiboot_info(multiboot_info);
2017-11-01 04:25:39 -04:00
2017-11-01 01:01:29 -04:00
logger_info("Kernel initialization started.");
2017-11-01 01:26:22 -04:00
2017-11-02 12:36:28 -04:00
protected_initialize();
2017-11-01 02:07:03 -04:00
asm volatile ("int $0x3");
asm volatile ("int $0x4");
2017-11-01 01:26:22 -04:00
2017-11-01 01:01:29 -04:00
logger_warn("Nothing to do.");
logger_fail("Halt.");
2017-11-01 00:43:42 -04:00
}