coreboot/util/riscv/spike-elf.ld

16 lines
153 B
Plaintext

/* See make-spike-elf.sh */
ENTRY(_start);
SECTIONS
{
. = 0x80000000;
_start = .;
.data : {
*(.data)
}
tohost = .;
. = . + 8;
fromhost = .;
}