Cygwin: lockf: Fix adding a new lock over multiple locks
[newlib-cygwin.git] / libgloss / msp430 / crt0.S
blobaffc2c9a85dd2bf0c2d5de51ea467a5931bda960
1 /* Copyright (c) 2012-2015 Red Hat, Inc. All rights reserved.
3    This copyrighted material is made available to anyone wishing to use, modify,
4    copy, or redistribute it subject to the terms and conditions of the BSD
5    License.   This program is distributed in the hope that it will be useful,
6    but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties
7    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  A copy of this license
8    is available at http://www.opensource.org/licenses. Any Red Hat trademarks that
9    are incorporated in the source code or documentation are not subject to the BSD
10    License and may only be used or replicated with the express permission of
11    Red Hat, Inc.
14 #include "memmodel.h"
16         .section ".resetvec", "a"
17 __msp430_resetvec_hook:
18         .word   __crt0_start
20         ;; Here we provide weak definitions of the symbols used in the
21         ;; init_highbss and move_highdata blocks, in case they are not
22         ;; provided by the linker script.  They are defined here because
23         ;; this block is always included in every executable, and because
24         ;; if there were defined in the blocks that need them their values
25         ;; would be used without giving the linker script a chance to
26         ;; override them.
27         ;; 
28         ;; The weak definitions are needed if the user targets an MCU
29         ;; without high memory - and hence uses a linker script without
30         ;; a definition of the .upper.bss or .upper.data sections - and
31         ;; they have compiled their code with the -mdata-region=either
32         ;; command line option.  That option causes the assembler to
33         ;; define the __crt0_move_highdata and/or crt0_init_highbss
34         ;; symbols, which in turn forces the inclusion of the
35         ;; move_highdata and/or init_highbss blocks in the startup code,
36         ;; regardless of the fact that the sections are not present in
37         ;; the linker script.
39         WEAK_DEF __upper_data_init
40         WEAK_DEF __rom_highdatacopysize
41         WEAK_DEF __high_datastart
42         WEAK_DEF __rom_highdatastart
43         WEAK_DEF __high_bssstart
44         WEAK_DEF __high_bsssize
46 START_CRT_FUNC 0000 start
47         .refsym __msp430_resetvec_hook
48         .refsym __crt0_call_main
49         mov_    #__stack, R1
51 END_CRT_FUNC    start
53 ;; The CRT functions will only be present in the final linked
54 ;; executable if the assembler decides they are needed.  The assembler will
55 ;; only define the symbol necessary to prevent them being garbage collected
56 ;; by the linker if the file being assembled has a specific section,
57 ;; or some other criteria is met.
58 ;; The exception to this is __crt0_call_exit. GCC will include this function
59 ;; if it detects that main() has an epilogue. For example, if main() has a
60 ;; while(1) loop at the end, GCC will not generate an epilogue (since it won't
61 ;; return) and __crt0_call_exit won't be included.