aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elf/seg.t
blob: 2f86acf18ff31a531c40ef3fef7cc9a57f988068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

SECTIONS
{
  reset - 4 :
  {
    *(reset)
  }
  boot - 0x1000 :
  {
    *(boot)
  } = 0xffff
  . = + SIZEOF_HEADERS;
  .text : { *(.text) }
  .data : { *(.data) }
  .bss : { *(.bss) }
}