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

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