From 5f8b5ce7efb7738eaebad43f9648975788ae19ff Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Apr 2020 20:59:57 +0200 Subject: Fixed userspace entering... Many other fixes too, but I won't mention them because I don't want to :) --- src/kernel/multiboot.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/kernel/multiboot.c') diff --git a/src/kernel/multiboot.c b/src/kernel/multiboot.c index fe59f45..086e628 100644 --- a/src/kernel/multiboot.c +++ b/src/kernel/multiboot.c @@ -24,9 +24,17 @@ void multiboot_parse(uint32_t multiboot_address) case MULTIBOOT_TAG_TYPE_MODULE: debug("Got modules"); break; + case MULTIBOOT_TAG_TYPE_BASIC_MEMINFO: + debug("Got memory info"); + memory_info_init((struct multiboot_tag_basic_meminfo *)tag); + break; case MULTIBOOT_TAG_TYPE_BOOTDEV: debug("Got boot device"); break; + case MULTIBOOT_TAG_TYPE_MMAP: + debug("Got memory map"); + memory_mmap_init((struct multiboot_tag_mmap *)tag); + break; case MULTIBOOT_TAG_TYPE_VBE: debug("Got VBE debug"); break; -- cgit v1.2.3