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/lib/memory.c | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/kernel/lib/memory.c') diff --git a/src/kernel/lib/memory.c b/src/kernel/lib/memory.c index 6aed060..30f75f9 100644 --- a/src/kernel/lib/memory.c +++ b/src/kernel/lib/memory.c @@ -96,24 +96,4 @@ void memory_mmap_init(struct multiboot_tag_mmap *tag) } } total = sum >> 10; // I want kb -} - -int memory_init(uint32_t multiboot_address) -{ - int ret = 0; - struct multiboot_tag *tag; - - for (tag = (struct multiboot_tag *)(multiboot_address + 8); - tag->type != MULTIBOOT_TAG_TYPE_END; - tag = (struct multiboot_tag *)((multiboot_uint8_t *)tag + ((tag->size + 7) & ~7))) { - if (tag->type == MULTIBOOT_TAG_TYPE_BASIC_MEMINFO) { - info("Got memory info"); - memory_info_init((struct multiboot_tag_basic_meminfo *)tag); - } else if (tag->type == MULTIBOOT_TAG_TYPE_MMAP) { - info("Got memory map"); - memory_mmap_init((struct multiboot_tag_mmap *)tag); - ret = 1; - } - } - return ret; } \ No newline at end of file -- cgit v1.2.3