/* * This file contains directives for the GNU linker which are specific * to the Motorola MVME167 board. * * Copyright (c) 1999, National Research Council of Canada. * Some of this material was copied from binutils-2.9.4 linker scripts, * and is therefore likely to be copyrighted by the Free Software * Foundation, even though explicit copyright notices did not appear in * those files. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ RamBase = DEFINED(RamBase) ? RamBase : 0x00800000; RamSize = DEFINED(RamSize) ? RamSize : 4M; MEMORY { /* The location of RAM is the address space is configurable. This is where we put one board. The base address should be passed as a parameter when building multiprocessor images where each board resides at a different address. */ ram : org = RamBase, l = RamSize rom : org = 0xFF800000, l = 4M sram : org = 0xFFE00000, l = 128K } REGION_ALIAS ("REGION_TEXT", ram); REGION_ALIAS ("REGION_TEXT_LOAD", ram); REGION_ALIAS ("REGION_DATA", ram); REGION_ALIAS ("REGION_DATA_LOAD", ram); INCLUDE linkcmds.base