Add z8k ld testsuite and fix range check in coff-z8k.c
[binutils-gdb.git] / ld / testsuite / ld-z8k / relocseg.ld
1 /* one segment for each of .text, .data, and .bss */
2
3 SECTIONS
4 {
5 .text 0x00011000 :
6 {
7 *(.text)
8 *(.strings)
9 *(.rdata)
10 }
11
12 .data 0x00022000 :
13 {
14 *(.data)
15 }
16
17 .bss 0x00033000 :
18 {
19 *(.bss);
20 *(COMMON);
21 }
22 }