From 51016670a24092b6b9ecd0f50d1aaa976e780cc1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 4 May 2021 23:06:50 +0200 Subject: General fixes (see description) - closes #17 Somehow the Grub conversion (or anything before/between that) seems to have caused a *very* weird memory bug involving the heap/stack/sth overflowing into the video memory which will obviously result in strange undefined behaviour when data is written to the video memory. VERY STRANGE. Well, I need to prepare for my finals (Abitur) so I don't know whether I can fix this issue in the next few days. We'll see... --- kernel/features/mm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'kernel/features') diff --git a/kernel/features/mm.c b/kernel/features/mm.c index e60e2b5..7a39b33 100644 --- a/kernel/features/mm.c +++ b/kernel/features/mm.c @@ -136,6 +136,7 @@ static void physical_page_set_free(u32 address) CLEAR void physical_set_total(u32 total) { + assert(total > 0); memory_total = total; } -- cgit v1.2.3