From e258bfcc9f4c5adb5ac2b25c7fb753dd183167f9 Mon Sep 17 00:00:00 2001 From: Nathan Giddings Date: Thu, 7 Sep 2023 00:56:40 -0500 Subject: [PATCH] Moved kernel base 4MiB lower --- src/x86/linker.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x86/linker.ld b/src/x86/linker.ld index a564c39..3a5cb05 100644 --- a/src/x86/linker.ld +++ b/src/x86/linker.ld @@ -2,7 +2,7 @@ ENTRY(_start) SECTIONS { - . = 0xFF400000; + . = 0xFF000000; VIRTUAL_BASE = .; PHYSICAL_BASE = 0x100000; BASE_DIFF = VIRTUAL_BASE - PHYSICAL_BASE;