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	ta 0
15
16.LCstack: .word crt0_stack_high
17.LCexit:  .word _exit
18
19.section ".bss"
20
21	.align	4
22	.global crt0_stack_low
23crt0_stack_low:
24	.space	2048
25	.global crt0_stack_high
26crt0_stack_high:
27