xref: /aosp_15_r20/external/coreboot/util/riscv/spike-elf.ld (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1/* See make-spike-elf.sh */
2
3ENTRY(_start);
4SECTIONS
5{
6	. = 0x80000000;
7	_start = .;
8	.data : {
9		*(.data)
10	}
11
12	tohost = .;
13	. = . + 8;
14	fromhost = .;
15}
16