From d205aba15ab17515adb547c26800c9342fee736c Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 8 Feb 2024 16:05:56 -0500 Subject: [PATCH] Set the base address back to 1 tb --- code/host/host.odin | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/host/host.odin b/code/host/host.odin index fbf6f9f..751e006 100644 --- a/code/host/host.odin +++ b/code/host/host.odin @@ -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