source: rtems/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds @ 03f2154e

4.104.114.84.95
Last change on this file since 03f2154e was 03f2154e, checked in by Joel Sherrill <joel.sherrill@…>, on 04/22/97 at 17:20:27

headers updated to reflect new style copyright notice as part
of switching to the modified GNU GPL.

  • Property mode set to 100644
File size: 873 bytes
Line 
1/*
2 *  This file contains directives for the GNU linker which are specific
3 *  to the Generic MC68302 board.
4 *
5 *  COPYRIGHT (c) 1989-1997.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may in
10 *  the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16MEMORY
17        {
18        ram : org = 0x0000, l = 16M
19        }
20
21m302 = 0xf7f000;
22_VBR = 0x000000;                /* location of the VBR table (in RAM) */
23
24SECTIONS
25{
26        .text 0xc00000 :
27        {
28        text_start = . ;
29        *(.text)
30        etext = ALIGN( 0x10 ) ;
31        }
32        .data 0x010000 :
33        {
34        data_start = . ;
35        *(.data)
36        edata = ALIGN( 0x10 ) ;
37        }
38        .bss ADDR( .data ) + SIZEOF( .data ):
39        {
40        bss_start = . ;
41        *(.bss)
42        *(COMMON)
43        end = . ;
44        _end = . ;
45        } 
46}
Note: See TracBrowser for help on using the repository browser.