RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
linker-symbols.h
Go to the documentation of this file.
1
9/*
10 * Copyright (c) 2008-2013 embedded brains GmbH. All rights reserved.
11 *
12 * embedded brains GmbH
13 * Dornierstr. 4
14 * 82178 Puchheim
15 * Germany
16 * <info@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#ifndef LIBBSP_M68K_SHARED_LINKER_SYMBOLS_H
24#define LIBBSP_M68K_SHARED_LINKER_SYMBOLS_H
25
26#ifdef __cplusplus
27extern "C" {
28#endif /* __cplusplus */
29
40#ifndef ASM
41 #define LINKER_SYMBOL(sym) extern char sym [];
42#else
43 #define LINKER_SYMBOL(sym) .extern sym
44#endif
45
46LINKER_SYMBOL(bsp_vector0_begin)
47LINKER_SYMBOL(bsp_vector0_end)
48LINKER_SYMBOL(bsp_vector0_size)
49
50LINKER_SYMBOL(bsp_vector1_begin)
51LINKER_SYMBOL(bsp_vector1_end)
52LINKER_SYMBOL(bsp_vector1_size)
53
54LINKER_SYMBOL(bsp_section_text_begin)
55LINKER_SYMBOL(bsp_section_text_end)
56LINKER_SYMBOL(bsp_section_text_size)
57LINKER_SYMBOL(bsp_section_text_load_begin)
58LINKER_SYMBOL(bsp_section_text_load_end)
59
60LINKER_SYMBOL(bsp_section_data_begin)
61LINKER_SYMBOL(bsp_section_data_end)
62LINKER_SYMBOL(bsp_section_data_size)
63LINKER_SYMBOL(bsp_section_data_load_begin)
64LINKER_SYMBOL(bsp_section_data_load_end)
65
66LINKER_SYMBOL(bsp_section_bss_begin)
67LINKER_SYMBOL(bsp_section_bss_end)
68LINKER_SYMBOL(bsp_section_bss_size)
69
70LINKER_SYMBOL(bsp_section_work_begin)
71LINKER_SYMBOL(bsp_section_work_end)
72LINKER_SYMBOL(bsp_section_work_size)
73
74LINKER_SYMBOL(bsp_initstack_begin)
75LINKER_SYMBOL(bsp_initstack_end)
76LINKER_SYMBOL(bsp_initstack_size)
77
78
80#ifdef __cplusplus
81}
82#endif /* __cplusplus */
83
84#endif /* LIBBSP_M68K_SHARED_LINKER_SYMBOLS_H */