Last change
on this file since 164 was 85, checked in by ecsg-okazaki, 9 years ago |
2014/09/26 ECS E.Okazaki Folder configuration change
|
File size:
1.6 KB
|
Line | |
---|
1 | /******************************************************************************
|
---|
2 | *
|
---|
3 | * Default Linker Command file for the Texas Instruments LM4F120H5QR
|
---|
4 | *
|
---|
5 | * This is part of revision 10114 of the Stellaris Peripheral Driver Library.
|
---|
6 | *
|
---|
7 | *****************************************************************************/
|
---|
8 |
|
---|
9 | --retain=_kernel_vector_table
|
---|
10 |
|
---|
11 | MEMORY
|
---|
12 | {
|
---|
13 | FLASH (RX) : origin = 0x00000000, length = 0x00040000
|
---|
14 | SRAM (RWX) : origin = 0x20000000, length = 0x00008000
|
---|
15 | }
|
---|
16 |
|
---|
17 | /* The following command line options are set as part of the CCS project. */
|
---|
18 | /* If you are building using the command line, or for some reason want to */
|
---|
19 | /* define them here, you can uncomment and modify these lines as needed. */
|
---|
20 | /* If you are using CCS for building, it is probably better to make any such */
|
---|
21 | /* modifications in your CCS project and leave this file alone. */
|
---|
22 | /* */
|
---|
23 | /* --heap_size=0 */
|
---|
24 | /* --stack_size=256 */
|
---|
25 | /* --library=rtsv7M4_T_le_eabi.lib */
|
---|
26 |
|
---|
27 | /* Section allocation in memory */
|
---|
28 |
|
---|
29 | SECTIONS
|
---|
30 | {
|
---|
31 | .vector : > 0x00000000
|
---|
32 | .text : > FLASH
|
---|
33 | .const : > FLASH
|
---|
34 | .cinit : > FLASH
|
---|
35 | .pinit : > FLASH
|
---|
36 | .init_array : > FLASH
|
---|
37 | .rodata : > FLASH
|
---|
38 | .rodata.str1.4 : > FLASH
|
---|
39 |
|
---|
40 |
|
---|
41 | .vtable : > 0x20000000
|
---|
42 | .data : > SRAM
|
---|
43 | .bss : > SRAM
|
---|
44 | .sysmem : > SRAM
|
---|
45 | .stack : > SRAM
|
---|
46 | }
|
---|
47 |
|
---|
48 | __STACK_TOP = __stack + 512;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.