1/*
2 * (c) 2008-2009 Alexander Warg <warg@os.inf.tu-dresden.de>
3 *     economic rights: Technische Universität Dresden (Germany)
4 * This file is part of TUD:OS and distributed under the terms of the
5 * GNU Lesser General Public License 2.1.
6 * Please see the COPYING-LGPL-2.1 file for details.
7 */
8/* -*- c -*- */
9
10/*#include <l4/sys/compiler.h>*/
11
12.section .text.init,#alloc,#execinstr
13.type _start,#function
14.globl _start
15_start:
16	ldr	x0, [sp], #8
17	mov	x1, sp
18	bl	__main
191:
20	b 1b
21
22.section ".data"
23	.global __dso_handle
24__dso_handle:
25	.8byte 0
26
27