source: rtems/bsps/m68k/mvme147s/start/linkcmds @ b82a4b4

5
Last change on this file since b82a4b4 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: 811 bytes
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Motorola MVME147s boards.
4 */
5
6/*
7 *  COPYRIGHT (c) 1989-2007,2016.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.org/license/LICENSE.
13 *
14 *  MVME147 port for TNI - Telecom Bretagne
15 *  by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
16 *  May 1996
17 */
18
19MEMORY
20{
21    bootrom_reserved : ORIGIN = 0x00000000, LENGTH = 0x7000
22    ram              : ORIGIN = 0x00007000, LENGTH = 4M - 0x7000
23}
24
25REGION_ALIAS ("REGION_TEXT", ram);
26REGION_ALIAS ("REGION_TEXT_LOAD", ram);
27REGION_ALIAS ("REGION_DATA", ram);
28REGION_ALIAS ("REGION_DATA_LOAD", ram);
29
30INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.