source: rtems/bsps/m68k/mvme167/start/linkcmds @ adb85dd

5
Last change on this file since adb85dd 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
RevLine 
[5d02459]1/*
2 *  This file contains directives for the GNU linker which are specific
[449905a8]3 *  to the Motorola MVME167 board.
[5d02459]4 *
[f58f0b45]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.
[5d02459]10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
[c499856]13 *  http://www.rtems.org/license/LICENSE.
[5d02459]14 */
15
[07ce99e]16RamBase = DEFINED(RamBase) ? RamBase : 0x00800000;
17RamSize = DEFINED(RamSize) ? RamSize : 4M;
[5d02459]18
19MEMORY
20{
[f58f0b45]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. */
[449905a8]25  ram  : org = RamBase, l = RamSize
[f58f0b45]26  rom  : org = 0xFF800000, l = 4M
27  sram : org = 0xFFE00000, l = 128K
[5d02459]28}
29
[449905a8]30REGION_ALIAS ("REGION_TEXT", ram);
31REGION_ALIAS ("REGION_TEXT_LOAD", ram);
32REGION_ALIAS ("REGION_DATA", ram);
33REGION_ALIAS ("REGION_DATA_LOAD", ram);
[b2b4835]34
[449905a8]35INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.