Fix HULK virtual start address to be addressable

This commit is contained in:
Josh Holtrop 2022-03-19 00:04:59 -04:00
parent 9182a83ef2
commit 5a5d60abae
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ ENTRY(hulk_start)
SECTIONS
{
. = 0x0000800000000000;
. = 0x0000400000000000;
_hulk_mem_start = .;
.text BLOCK(4K) : ALIGN(4K)

View File

@ -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;