begin.S revision a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349
1	.text
2	.align 4
3	.type _start,#function
4	.globl _start
5
6_start:
7	mov	r0, sp
8	mov	r1, #0
9	bl	__linker_init
10
11	/* linker init returns the _entry address in the main image */
12	mov	pc, r0
13
14	.section .ctors, "wa"
15	.globl __CTOR_LIST__
16__CTOR_LIST__:
17	.long -1
18