Merge pull request #212 from riscv/hartsel
[riscv-isa-sim.git] / debug_rom / link.ld
1 OUTPUT_ARCH( "riscv" )
2 ENTRY( entry )
3 SECTIONS
4 {
5 .whereto 0x300 :
6 {
7 *(.whereto)
8 }
9 . = 0x800;
10 .text :
11 {
12 *(.text)
13 }
14 _end = .;
15 }