Warning, /bsps/m68k/mvme167/start/linkcmds is written in an unsupported language. File is not indexed.
0001 /*
0002 * This file contains directives for the GNU linker which are specific
0003 * to the Motorola MVME167 board.
0004 *
0005 * Copyright (c) 1999, National Research Council of Canada.
0006 * Some of this material was copied from binutils-2.9.4 linker scripts,
0007 * and is therefore likely to be copyrighted by the Free Software
0008 * Foundation, even though explicit copyright notices did not appear in
0009 * those files.
0010 *
0011 * The license and distribution terms for this file may be
0012 * found in the file LICENSE in this distribution or at
0013 * http://www.rtems.org/license/LICENSE.
0014 */
0015
0016 RamBase = DEFINED(RamBase) ? RamBase : 0x00800000;
0017 RamSize = DEFINED(RamSize) ? RamSize : 4M;
0018 RamEnd = RamBase + RamSize;
0019
0020 MEMORY
0021 {
0022 /* The location of RAM is the address space is configurable.
0023 This is where we put one board. The base address should be
0024 passed as a parameter when building multiprocessor images
0025 where each board resides at a different address. */
0026 ram : org = RamBase, l = RamSize
0027 rom : org = 0xFF800000, l = 4M
0028 sram : org = 0xFFE00000, l = 128K
0029 }
0030
0031 REGION_ALIAS ("REGION_TEXT", ram);
0032 REGION_ALIAS ("REGION_TEXT_LOAD", ram);
0033 REGION_ALIAS ("REGION_DATA", ram);
0034 REGION_ALIAS ("REGION_DATA_LOAD", ram);
0035
0036 INCLUDE linkcmds.base