diff options
author | Marvin Borner | 2021-04-28 23:12:17 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-28 23:12:17 +0200 |
commit | 04104fc051d44f4f9b3328f29b4be91fa4060f34 (patch) | |
tree | 1677c1739c44bd7c7e8722ea00ca3c6b45158c85 /kernel/main.c | |
parent | 895a58b1b57a0ae8028576404a90f12e0133cf5f (diff) |
Started conversion to Grub (#17)
Yes, the CI won't like this.
Diffstat (limited to 'kernel/main.c')
-rw-r--r-- | kernel/main.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/kernel/main.c b/kernel/main.c index e558126..e0e544b 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -9,6 +9,7 @@ #include <load.h> #include <mem.h> #include <mm.h> +#include <multiboot.h> #include <net.h> #include <pci.h> #include <rand.h> @@ -19,21 +20,19 @@ PROTECTED extern u32 __stack_chk_guard; PROTECTED u32 __stack_chk_guard; -PROTECTED u32 tss_entry = 0; -PROTECTED u32 boot_drive = 0; - -int kernel_main(struct boot_info *boot); // Decl -int kernel_main(struct boot_info *boot) +int kernel_main(u32 magic, u32 addr); // Decl +int kernel_main(u32 magic, u32 addr) { // Serial connection serial_install(); serial_print("\nKernel was compiled at " __TIME__ " on " __DATE__ "\n"); - serial_print("Serial connected.\n"); + serial_print("Serial connected. LOOPING!\n"); - tss_entry = boot->tss; - boot_drive = boot->drive; + multiboot_init(magic, addr); + while (1) + ; - memory_install(boot); + memory_install(); memory_switch_dir(virtual_kernel_dir()); cpu_enable_features(); @@ -47,7 +46,7 @@ int kernel_main(struct boot_info *boot) ata_install(); pci_install(); interrupts_install(); - io_install(boot); + io_install(); // Enable drivers sti(); |