diff options
author | Joursoir <chat@joursoir.net> | 2022-10-10 18:50:00 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-10-13 19:02:08 +0300 |
commit | 5fdd893728a6506cd7980b85b9862523e841877d (patch) | |
tree | b5b4bc6609acc8667de5ed30497523fc86155bba /kernel | |
parent | bec2cd1c1322ed6ec3e988de9a9580562d481423 (diff) | |
download | mfsos-5fdd893728a6506cd7980b85b9862523e841877d.tar.gz mfsos-5fdd893728a6506cd7980b85b9862523e841877d.tar.bz2 mfsos-5fdd893728a6506cd7980b85b9862523e841877d.zip |
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/main.c b/kernel/main.c index 5b146bb..82cb175 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -1,3 +1,4 @@ +#include "multiboot.h" #include "video/console/vgacon.h" #include "gdt.h" @@ -9,7 +10,8 @@ #if !defined(__i386__) #error "This kernel needs to be compiled with a ix86-elf compiler" #endif -void kernel_main(void) + +void kernel_main(uint32_t magic, multiboot_info_t *multiboot) { init_segmentation(); |