OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / h8300 / crt0.S
1 /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
2
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB.  If
17 not, see <http://www.gnu.org/licenses/>.  */
18
19 #include <features.h>
20
21         .global _start
22         .global __exit
23         .global atexit
24         .global main
25
26 #ifdef __H8300S__
27         .h8300s
28 #else
29         .h8300h
30 #endif
31         .text
32
33 _start: /* put here so that references to _start work with elf-PIC */
34
35         mov.l   @(0,sp),er0     /* argc */
36         mov.l   @(4,sp),er1     /* argv */
37         mov.l   @(8,sp),er2     /* envp */
38 #if !defined(__PIC__)
39         jsr     @___uClibc_main
40 #else
41         mov.l   @(___uClibc_main@GOTOFF,er5),er3
42         jsr     @er3
43 #endif
44
45         /* If that didn't kill us, ... */
46 __exit:
47         mov.l   er0,er1
48         sub.l   er0,er0
49         inc.l   #1,er0           /* __NR_exit */
50         trapa   #0
51
52 /*
53  *      this was needed for gcc/g++-builds,  atexit was not getting included
54  *      for some stupid reason,  this gets us a compiler
55  */
56 empty_func:
57         rts
58         .weak atexit
59         atexit = empty_func
60
61
62 /* Define a symbol for the first piece of initialized data.  */
63         .data
64         .globl __data_start
65 __data_start:
66         .long 0
67         .weak data_start
68         data_start = __data_start
69