Hi, Ramazan,
This is the api function to fill memory with zero.
void bss_init(unsigned int start, unsigned int len) {
unsigned int *pulDest = (unsigned int*) start;
unsigned int loop;
for (loop = 0; loop < len; loop = loop + 4)
*pulDest++ = 0;
}
But it is not the main task to develop a function to fill memory, the main task is to know which memory space needs to be filled with zero, which memory space must not be filled. For example, the stack can NOT be filled, the application global variables can not be filled. so you have to check the link file to know the allocation of memory space and know what memory need to be filled or not.
Hope it can help you
BR
XiangJun Rong