1
0
Fork 0
rocket-chip/scripts/debug_rom/link.ld

17 lines
223 B
Plaintext

/* See LICENSE.SiFive for license details. */
OUTPUT_ARCH( "riscv" )
ENTRY( entry )
SECTIONS
{
.whereto 0x300 :
{
*(.whereto)
}
. = 0x800;
.text :
{
*(.text)
}
_end = .;
}