4coder/platform_all/4ed_shared_init_logic.cpp

48 lines
1.5 KiB
C++
Raw Normal View History

2017-07-18 23:17:40 +00:00
/*
* Mr. 4th Dimention - Allen Webster
*
* 18.07.2017
*
* Shared logic for 4coder initialization.
*
*/
// TOP
2017-07-18 23:41:28 +00:00
internal void
2017-07-18 23:17:40 +00:00
system_memory_init(){
#if defined(FRED_INTERNAL)
2017-07-18 23:20:42 +00:00
# if defined(FTECH_64_BIT)
2017-07-18 23:17:40 +00:00
void *bases[] = { (void*)TB(1), (void*)TB(2), };
2017-07-18 23:20:42 +00:00
# elif defined(FTECH_32_BIT)
2017-07-18 23:17:40 +00:00
void *bases[] = { (void*)MB(96), (void*)MB(98), };
# endif
#else
void *bases[] = { (void*)0, (void*)0, };
#endif
memory_vars.vars_memory_size = MB(2);
memory_vars.vars_memory = system_memory_allocate_extended(bases[0], memory_vars.vars_memory_size);
memory_vars.target_memory_size = MB(512);
memory_vars.target_memory = system_memory_allocate_extended(bases[1], memory_vars.target_memory_size);
memory_vars.user_memory_size = MB(2);
memory_vars.user_memory = system_memory_allocate_extended(0, memory_vars.user_memory_size);
memory_vars.debug_memory_size = MB(512);
memory_vars.debug_memory = system_memory_allocate_extended(0, memory_vars.debug_memory_size);
target.max = MB(1);
target.push_buffer = (char*)system_memory_allocate(target.max);
b32 alloc_success = true;
if (memory_vars.vars_memory == 0 || memory_vars.target_memory == 0 || memory_vars.user_memory == 0 || target.push_buffer == 0){
alloc_success = false;
}
2017-07-18 23:41:28 +00:00
if (!alloc_success){
char msg[] = "Could not allocate sufficient memory. Please make sure you have atleast 512Mb of RAM free. (This requirement will be relaxed in the future).";
system_error_box(msg);
}
2017-07-18 23:17:40 +00:00
}
// BOTTOM