Replace MINUS_G by CFLAGS.
[deliverable/binutils-gdb.git] / ld / ldgldm68kvr.sc
CommitLineData
33638b1c
SC
1/* $Id$
2*/
3
4OUTPUT_FORMAT("m68kvcoff")
5
6ENTRY(__startup)
7SECTIONS
8{
9 .text 0x001000a8 : {
10 *(.init)
11 *(.text)
12 *(.fini)
13 _etext = .;
14 }
15 .data ((ADDR(.text) + SIZEOF(.text)) % 0x2000) + ALIGN(0x00200000) : {
16 *(.data)
17 _edata = .;
18 }
19 .bss (SIZEOF(.data) + ADDR(.data)) : {
20 *(.bss)
21 [COMMON]
22 _end = ALIGN(0x8);
23 }
24}
This page took 0.03977 seconds and 4 git commands to generate.