1/* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
2
3This file is part of GCC.
4
5GCC is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
7Free Software Foundation; either version 2, or (at your option) any
8later version.
9
10In addition to the permissions in the GNU General Public License, the
11Free Software Foundation gives you unlimited permission to link the
12compiled version of this file into combinations with other programs,
13and to distribute those combinations without any restriction coming
14from the use of this file.  (The General Public License restrictions
15do apply in other respects; for example, they cover modification of
16the file, and distribution when not linked into a combine
17executable.)
18
19GCC is distributed in the hope that it will be useful,
20but WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22General Public License for more details.
23
24You should have received a copy of the GNU General Public License
25along with this program; see the file COPYING.  If not, write to
26the Free Software Foundation, 51 Franklin Street, Fifth Floor,
27Boston, MA 02110-1301, 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#ifdef __NORMAL_MODE__
42	.h8300hn
43#else
44	.h8300h
45#endif
46#endif
47
48#ifdef __H8300S__
49#ifdef __NORMAL_MODE__
50	.h8300sn
51#else
52	.h8300s
53#endif
54#endif
55#ifdef __H8300SX__
56#ifdef __NORMAL_MODE__
57	.h8300sxn
58#else
59	.h8300sx
60#endif
61#endif
62
63	.section .init
64        .global  __init
65__init:
66        .section .fini
67        .global  __fini
68__fini:
69