Compare commits

...

2 Commits

3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
__gshared ubyte[512 * 1024] scratch;
align(4096) __gshared ubyte[512 * 1024] scratch;
__gshared size_t scratch_used;
size_t scratch_free()

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;