source: rtems/bsps/or1k/generic_or1k/start/linkcmds @ 9964895

5
Last change on this file since 9964895 was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup bsp_linker
5 *
6 * @brief Memory map
7 */
8
9/*
10 * COPYRIGHT (c) 2014 Hesham ALMatary <heshamelmatary@gmail.com>
11 *
12 * The license and distribution terms for this file may be
13 * found in the file LICENSE in this distribution or at
14 * http://www.rtems.org/license/LICENSE
15 */
16
17MEMORY
18  {
19      VECTOR_RAM     (AIW) : ORIGIN = 0x0       , LENGTH = 8260
20      RAM   : org = 0x00002048, l = 0x1FFDFB8
21      UNEXPECTED_SECTIONS : ORIGIN = 0xffffffff, LENGTH = 0
22  }
23
24REGION_ALIAS ("REGION_START", RAM);
25REGION_ALIAS ("REGION_VECTOR", VECTOR_RAM);
26REGION_ALIAS ("REGION_TEXT", RAM);
27REGION_ALIAS ("REGION_TEXT_LOAD", RAM);
28REGION_ALIAS ("REGION_RODATA", RAM);
29REGION_ALIAS ("REGION_RODATA_LOAD", RAM);
30REGION_ALIAS ("REGION_DATA", RAM);
31REGION_ALIAS ("REGION_DATA_LOAD", RAM);
32REGION_ALIAS ("REGION_FAST_DATA", RAM);
33REGION_ALIAS ("REGION_FAST_DATA_LOAD", RAM);
34REGION_ALIAS ("REGION_BSS", RAM);
35REGION_ALIAS ("REGION_WORK", RAM);
36REGION_ALIAS ("REGION_STACK", RAM);
37
38bsp_section_vector_begin = 0;
39bsp_section_stack_begin = 0x1FFDFB8;
40
41INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.