MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / init_bss

Function init_bss

bsp/k210/board/board.c:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22#include "dmalock.h"
23
24void init_bss(void)
25{
26 unsigned int *dst;
27
28 dst = &__bss_start;
29 while (dst < &__bss_end)
30 {
31 *dst++ = 0;
32 }
33}
34
35void primary_cpu_entry(void)
36{

Callers 1

primary_cpu_entryFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected