OpenCores
URL https://opencores.org/ocsvn/fwrisc/fwrisc/trunk

Subversion Repositories fwrisc

[/] [fwrisc/] [trunk/] [ve/] [fwrisc/] [tests/] [riscv-compliance/] [riscv-test-env/] [pm/] [link.ld] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 mballance
OUTPUT_ARCH( "riscv" )
2
ENTRY(_start)
3
 
4
SECTIONS
5
{
6
  . = 0x80000000;
7
  .text.init : { *(.text.init) }
8
  . = ALIGN(0x1000);
9
  .tohost : { *(.tohost) }
10
  . = ALIGN(0x1000);
11
  .text : { *(.text) }
12
  . = ALIGN(0x1000);
13
  .data : { *(.data) }
14
  .bss : { *(.bss) }
15
  _end = .;
16
}
17
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.