repo.or.cz
/
qemu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hw/core: fix platform bus node name
[qemu.git]
/
tests
/
multiboot
/
link.ld
blob
2eafcffc4f123255befccf11db5b4828be7ee322
1
ENTRY(_start)
2
3
SECTIONS
4
{
5
. = 0x100000;
6
.text : AT(ADDR(.text)) {
7
*(multiboot)
8
*(.text)
9
}
10
.data ALIGN(4096) : AT(ADDR(.data)) {
11
*(.data)
12
}
13
.rodata ALIGN(4096) : AT(ADDR(.rodata)) {
14
*(.rodata)
15
}
16
.bss ALIGN(4096) : {
17
*(.bss)
18
}
19
}