diff options
author | dzwdz | 2022-08-15 20:48:23 +0200 |
---|---|---|
committer | dzwdz | 2022-08-15 20:48:23 +0200 |
commit | 3e80780859c4cbe5223ca4329bfd6176f5c2c879 (patch) | |
tree | 92f42d2720d84434276c5382f1b43b8d73124827 /src/kernel/arch/amd64/boot.h | |
parent | fa082df2da6b3be52c66ce0d48c209a3df38115d (diff) |
kernel: port to multiboot2
Diffstat (limited to 'src/kernel/arch/amd64/boot.h')
-rw-r--r-- | src/kernel/arch/amd64/boot.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/kernel/arch/amd64/boot.h b/src/kernel/arch/amd64/boot.h index 98adff5..251086c 100644 --- a/src/kernel/arch/amd64/boot.h +++ b/src/kernel/arch/amd64/boot.h @@ -1,4 +1,2 @@ #pragma once -#include <kernel/arch/amd64/multiboot.h> - -void kmain_early(struct multiboot_info *multiboot); +void kmain_early(void *mbi); |