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

Function rt_hw_clear_bss

bsp/x86/drivers/board.c:38–44  ·  view source on GitHub ↗

clear .bss */

Source from the content-addressed store, hash-verified

36
37/* clear .bss */
38void rt_hw_clear_bss(void)
39{
40 unsigned char *dst;
41 dst = __bss_start;
42 while (dst < __bss_end)
43 *dst++ = 0;
44}
45
46/**
47 * This function will init QEMU

Callers 1

rt_hw_board_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected