Only called during new-overide initialization Pointer to the allocated block

Return TypeFunction nameArguments
void*_regime_alloc_Syst(uint32_t,)

Declared and defined in file: hzMemory.cpp

Function Logic:

0:START 1:s_nBytesInit ptr 2:Return ptr

Function body:

void* _regime_alloc_Syst (uint32_t size)
{
   //  Category: Memory
   //  
   //  Only called during new-overide initialization
   //  
   //  Arguments: 1) size Bytes to allocate
   //  Returns: Pointer to the allocated block
   void*   ptr ;       //  New object space
   s_nBytesInit += size ;
   ptr = malloc(size) ;
   return ptr ;
}