This is a test to see if the file is still locked.
[deliverable/binutils-gdb.git] / ld / h8300hms.sc-sh
1 cat <<EOF
2 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3 OUTPUT_ARCH(${ARCH})
4
5 MEMORY {
6 rom : o = 0x0000, l = 0x7fe0
7 duart : o = 0x7fe0, l = 16
8 ram : o = 0x8000, l = 28k
9 topram : o = 0x8000+28k, l = 1k
10 hmsram : o = 0xfb80, l = 512
11 }
12
13 SECTIONS
14 {
15 .text :
16 {
17 *(.text)
18 *(.strings)
19 _etext = .;
20 } ${RELOCATING+ > ram}
21 .data :
22 {
23 *(.data)
24 _edata = .;
25 } ${RELOCATING+ > ram}
26 .bss :
27 {
28 ${RELOCATING+ _bss_start = .};
29 *(.bss)
30 *(COMMON)
31 ${RELOCATING+ _end = .};
32 } ${RELOCATING+ >ram}
33 .stack :
34 {
35 _stack = .;
36 *(.stack)
37 } ${RELOCATING+ > topram}
38 }
39 EOF
40
41
42
43
This page took 0.044334 seconds and 4 git commands to generate.