source: azure_iot_hub_f767zi/trunk/asp_baseplatform/target/stm32f767nucleo144_gcc/stm32f7xx_ram.ld@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

File size: 2.2 KB
Line 
1MEMORY
2{
3 ROM (rx) : ORIGIN = 0x08000000, LENGTH = 2048K
4 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 512K
5}
6
7OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm","elf32-littlearm")
8OUTPUT_ARCH(arm)
9
10PROVIDE(hardware_init_hook = 0);
11PROVIDE(software_init_hook = 0);
12PROVIDE(software_term_hook = 0);
13STARTUP(start.o)
14ENTRY(_kernel__start)
15
16SECTIONS
17{
18 .text :
19 {
20 __text = . ;
21 KEEP(*(.vector))
22 . = ALIGN(16);
23 *(.text*)
24 *(.glue_7t)
25 *(.glue_7)
26 } > RAM
27 _etext = . ;
28 PROVIDE (etext = .) ;
29
30 .rodata : {
31 *(.rodata*)
32 } > RAM
33
34 . = ALIGN(4);
35 .data : AT(__idata_start)
36 {
37 __data_start = . ;
38 *(vtable)
39 *(.data*)
40 } > RAM
41 __idata_start = __data_start ;
42 __idata_end = __idata_start + SIZEOF(.data);
43 _edata = . ;
44 PROVIDE (edata = .);
45 . = ALIGN(4);
46
47 .bss :
48 {
49 __bss_start = . ;
50 *(.bss*)
51 *(COMMON)
52 . = ALIGN(32 / 8);
53 } > RAM
54 . = ALIGN(32 / 8);
55 _end = . ;
56 __bss_end = .;
57 PROVIDE (end = .) ;
58
59 .comment 0 : { *(.comment) }
60
61 /* DWARF debug sections.
62 Symbols in the DWARF debugging sections are relative to
63 the beginning of the section so we begin them at 0. */
64
65 /* DWARF 1 */
66 .debug 0 : { *(.debug) }
67 .line 0 : { *(.line) }
68
69 /* GNU DWARF 1 extensions */
70 .debug_srcinfo 0 : { *(.debug_srcinfo) }
71 .debug_sfnames 0 : { *(.debug_sfnames) }
72
73 /* DWARF 1.1 and DWARF 2 */
74 .debug_aranges 0 : { *(.debug_aranges) }
75 .debug_pubnames 0 : { *(.debug_pubnames) }
76
77 /* DWARF 2 */
78 .debug_info 0 : { *(.debug_info) }
79 .debug_abbrev 0 : { *(.debug_abbrev) }
80 .debug_line 0 : { *(.debug_line) }
81 .debug_frame 0 : { *(.debug_frame) }
82 .debug_str 0 : { *(.debug_str) }
83 .debug_loc 0 : { *(.debug_loc) }
84 .debug_macinfo 0 : { *(.debug_macinfo) }
85
86 /* SGI/MIPS DWARF 2 extensions */
87 .debug_weaknames 0 : { *(.debug_weaknames) }
88 .debug_funcnames 0 : { *(.debug_funcnames) }
89 .debug_typenames 0 : { *(.debug_typenames) }
90 .debug_varnames 0 : { *(.debug_varnames) }
91}
Note: See TracBrowser for help on using the repository browser.