repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MAINTAINERS: Add Maximilian Brune to RISC-V
[coreboot.git]
/
util
/
riscv
/
spike-elf.ld
blob
44114f7cadcbc60fae7f43867ab987b2b7f1e5a1
1
/* See make-spike-elf.sh */
2
3
ENTRY(_start);
4
SECTIONS
5
{
6
. = 0x80000000;
7
_start = .;
8
.data : {
9
*(.data)
10
}
11
12
tohost = .;
13
. = . + 8;
14
fromhost = .;
15
}