summaryrefslogtreecommitdiffstats
path: root/util/riscv/spike-elf.ld
blob: 44114f7cadcbc60fae7f43867ab987b2b7f1e5a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* See make-spike-elf.sh */

ENTRY(_start);
SECTIONS
{
	. = 0x80000000;
	_start = .;
	.data : {
		*(.data)
	}

	tohost = .;
	. = . + 8;
	fromhost = .;
}