blob: d10595c05299081d124fb0f1002a82e83bdbef93 (
plain)
1
2
3
4
5
6
7
|
// stack definition code
// top of stack
extern unsigned __stacktop;
// initial stack pointer is first address of program
__attribute__((section(".stack"), used)) unsigned *__stack_init = &__stacktop;
|