From 631be55ea9f649df5c9176cab4deee779eca7582 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Thu, 14 Apr 2022 22:05:31 +0200 Subject: [PATCH] Stuff --- kernel/memory.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/memory.c b/kernel/memory.c index 045997d..0e732f2 100644 --- a/kernel/memory.c +++ b/kernel/memory.c @@ -24,6 +24,7 @@ static int bitmap = 0; static uint last_block; uint get_phys_mem_size() { + // TODO: read actual mappings uint e820_count = (uint) *BIOS_E820; return e820_count; }