This is a test to see if the file is still locked.
[deliverable/binutils-gdb.git] / ld / h8300hds.sc
1 OUTPUT_FORMAT("coff-h8300")
2 OUTPUT_ARCH(h8300)
3
4 SECTIONS
5 {
6 .text 0:
7 {
8 *(.text)
9 *(.strings)
10 }
11 .data . :
12 {
13 *(.data)
14 }
15 .bss . :
16 {
17 *(.bss)
18 *(COMMON)
19 _end = .;
20 }
21 }
22
This page took 0.044808 seconds and 4 git commands to generate.