Move debug rom link map to the right place.
[riscv-isa-sim.git] / debug_rom / link.ld
1 OUTPUT_ARCH( "riscv" )
2 ENTRY( entry )
3 SECTIONS
4 {
5 . = 0x800;
6 .text :
7 {
8 *(.text)
9 }
10 _end = .;
11 }