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