source: rtems/c/src/lib/libbsp/m68k/gen68302/startup/linkcmds @ 1ceface

4.104.114.84.95
Last change on this file since 1ceface was 11290355, checked in by Joel Sherrill <joel.sherrill@…>, on 09/29/95 at 17:19:16

all targets compile .. tony's patches in place

  • Property mode set to 100644
File size: 965 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, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
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.