Set the base address back to 1 tb

This commit is contained in:
Edward R. Gonzalez 2024-02-08 16:05:56 -05:00
parent 84d9675a27
commit d205aba15a

View File

@ -62,7 +62,7 @@ setup_memory :: proc () -> VMemChunk
// Setup the static arena for the entire application
{
base_address : rawptr = transmute( rawptr) u64(Terabyte * 2)
base_address : rawptr = transmute( rawptr) u64(Terabyte * 1)
result := arena_init_static( & sectr_live, base_address, sectr.memory_chunk_size, sectr.memory_chunk_size )
if result != runtime.Allocator_Error.None
@ -206,8 +206,6 @@ sync_sectr_api :: proc ( sectr_api : ^ sectr.ModuleAPI, memory : ^ VMemChunk )
main :: proc()
{
fmt.println("Hellope!")
state : RuntimeState
using state