forked from cs107e/cs107e.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcstart.c
26 lines (21 loc) · 764 Bytes
/
cstart.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// linker memmap places these symbols at start/end of bss
extern int __bss_start__, __bss_end__;
extern void main(void);
// The C function _cstart is called from the assembly in start.s
// _cstart zeroes out the BSS section and then calls main.
// After return from main(), turns on the green ACT LED as
// a sign of successful completion.
void _cstart(void)
{
int *bss = &__bss_start__;
int *bss_end = &__bss_end__;
while (bss < bss_end) {
*bss++ = 0;
}
main();
// Turn on the green ACT LED (GPIO 47)
volatile unsigned int *GPIO_FSEL4 = (unsigned int *)0x20200010;
volatile unsigned int *GPIO_SET1 = (unsigned int *)0x20200020;
*GPIO_FSEL4 = (*GPIO_FSEL4 & ~(7 << 21)) | (1 << 21);
*GPIO_SET1 = 1 << 15;
}