From 10d4bbd1330695ee1b070589ccf22d969313b35f Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Thu, 20 Jul 2023 08:39:59 +0200 Subject: [PATCH] Prekernel: Fix wrong and misleading comment Comment speaks about MULTIBOOT_MEMORY_INFO but those fields are actually about aout kludge. --- Kernel/Prekernel/multiboot.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Prekernel/multiboot.S b/Kernel/Prekernel/multiboot.S index 1d43fa799b..e4cc68f21d 100644 --- a/Kernel/Prekernel/multiboot.S +++ b/Kernel/Prekernel/multiboot.S @@ -14,7 +14,7 @@ .long multiboot_checksum -/* for MULTIBOOT_MEMORY_INFO */ +/* for MULTIBOOT_AOUT_KLUDGE, just a dummy */ .long 0x00000000 /* header_addr */ .long 0x00000000 /* load_addr */ .long 0x00000000 /* load_end_addr */