From 5a5d60abae677fd665596908613ee74d01e6c402 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 19 Mar 2022 00:04:59 -0400 Subject: [PATCH] Fix HULK virtual start address to be addressable --- src/hulk/hulk.ld | 2 +- src/hulk/hulk/bootinfo.d | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hulk/hulk.ld b/src/hulk/hulk.ld index 672da53..686df43 100644 --- a/src/hulk/hulk.ld +++ b/src/hulk/hulk.ld @@ -2,7 +2,7 @@ ENTRY(hulk_start) SECTIONS { - . = 0x0000800000000000; + . = 0x0000400000000000; _hulk_mem_start = .; .text BLOCK(4K) : ALIGN(4K) diff --git a/src/hulk/hulk/bootinfo.d b/src/hulk/hulk/bootinfo.d index bd4d2e6..a4842d9 100644 --- a/src/hulk/hulk/bootinfo.d +++ b/src/hulk/hulk/bootinfo.d @@ -19,4 +19,4 @@ struct BootInfo size_t memory_map_count; } -enum ulong HULK_VIRTUAL_START = 0x0000_8000_0000_0000u; +enum ulong HULK_VIRTUAL_START = 0x0000_4000_0000_0000u;