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

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