repo.or.cz
/
qemu
/
armbru.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git]
/
tests
/
tcg
/
riscv64
/
semihost.ld
blob
a59cc56b289a03209690628981ff12e801dccef7
1
ENTRY(_start)
2
3
SECTIONS
4
{
5
/* virt machine, RAM starts at 2gb */
6
. = 0x80000000;
7
.text : {
8
*(.text)
9
}
10
.rodata : {
11
*(.rodata)
12
}
13
/* align r/w section to next 2mb */
14
. = ALIGN(1 << 21);
15
.data : {
16
*(.data)
17
}
18
.bss : {
19
*(.bss)
20
}
21
}