source: trunk/binutils/ld/testsuite/ld-scripts/script.t

Last change on this file was 10, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 190 bytes
Line 
1SECTIONS
2{
3 .text 0x100 : {
4 text_start = .;
5 *(.text)
6 *(.pr)
7 text_end = .;
8 }
9 . = 0x1000;
10 .data : {
11 data_start = .;
12 *(.data)
13 *(.rw)
14 data_end = .;
15 }
16}
Note: See TracBrowser for help on using the repository browser.