summaryrefslogtreecommitdiff
path: root/p/link.ld
blob: 59a9253796657bf6346ea6dabe775d3402cd8aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
OUTPUT_ARCH( "riscv" )

SECTIONS
{
  . = 0x80000000;
  .text.init : { *(.text.init) }
  .tohost ALIGN(0x1000) : { *(.tohost) }
  .text : { *(.text) }
  .data ALIGN(0x1000) : { *(.data) }
  .bss : { *(.bss) }
  _end = .;
}