1/*
2 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
3 *     economic rights: Technische Universität Dresden (Germany)
4 *
5 * This file is part of TUD:OS and distributed under the terms of the
6 * GNU General Public License 2.
7 * Please see the COPYING-GPL-2 file for details.
8 */
9
10.section .text.init,#alloc,#execinstr
11.type _start,#function
12.globl _start
13_start:
14	ldr 	sp, .LCstack
15	ldr	lr, .LCexit
16	b	init
17.LCstack: .word crt0_stack_high
18.LCexit:  .word _exit
19
20.section ".bss"
21
22	.align	3
23	.global crt0_stack_low
24crt0_stack_low:
25	.space	2048
26	.global crt0_stack_high
27crt0_stack_high:
28