OSDN Git Service

* config/h8300/h8300.c (dosize): Avoid corrupting R3 in interrupt
[pf3gnuchains/gcc-fork.git] / gcc / config / h8300 / crti.asm
1 /* Copyright (C) 2001 Free Software Foundation, Inc.
2
3 This file is part of GNU CC.
4
5 GNU CC is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
8 later version.
9
10 In addition to the permissions in the GNU General Public License, the
11 Free Software Foundation gives you unlimited permission to link the
12 compiled version of this file into combinations with other programs,
13 and to distribute those combinations without any restriction coming
14 from the use of this file.  (The General Public License restrictions
15 do apply in other respects; for example, they cover modification of
16 the file, and distribution when not linked into a combine
17 executable.)
18
19 GNU CC is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; see the file COPYING.  If not, write to
26 the Free Software Foundation, 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA.  */
28
29 /* The code in sections .init and .fini is supposed to be a single
30    regular function.  The function in .init is called directly from
31    start in crt0.asm.  The function in .fini is atexit()ed in crt0.asm
32    too.
33
34    crti.asm contributes the prologue of a function to these sections,
35    and crtn.asm comes up the epilogue.  STARTFILE_SPEC should list
36    crti.o before any other object files that might add code to .init
37    or .fini sections, and ENDFILE_SPEC should list crtn.o after any
38    such object files.  */
39
40 #ifdef __H8300H__
41         .h8300h
42 #endif
43
44 #ifdef __H8300S__
45         .h8300s
46 #endif
47
48         .section .init
49         .global  __init
50 __init:
51         .section .fini
52         .global  __fini
53 __fini: