source: rtems/bsps/m68k/mvme167/start/linkcmds @ 031df391

5
Last change on this file since 031df391 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.2 KB
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Motorola MVME167 board.
4 *
5 *  Copyright (c) 1999, National Research Council of Canada.
6 *  Some of this material was copied from binutils-2.9.4 linker scripts,
7 *  and is therefore likely to be copyrighted by the Free Software
8 *  Foundation, even though explicit copyright notices did not appear in
9 *  those files.
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.org/license/LICENSE.
14 */
15
16RamBase = DEFINED(RamBase) ? RamBase : 0x00800000;
17RamSize = DEFINED(RamSize) ? RamSize : 4M;
18
19MEMORY
20{
21  /*  The location of RAM is the address space is configurable.
22      This is where we put one board. The base address should be
23      passed as a parameter when building multiprocessor images
24      where each board resides at a different address. */
25  ram  : org = RamBase, l = RamSize
26  rom  : org = 0xFF800000, l = 4M
27  sram : org = 0xFFE00000, l = 128K
28}
29
30REGION_ALIAS ("REGION_TEXT", ram);
31REGION_ALIAS ("REGION_TEXT_LOAD", ram);
32REGION_ALIAS ("REGION_DATA", ram);
33REGION_ALIAS ("REGION_DATA_LOAD", ram);
34
35INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.