repo.or.cz
/
qemu
/
agraf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s390-ccw.img: replace while loop with a disabled wait on s390 bios
[qemu/agraf.git]
/
tests
/
tcg
/
mips
/
mips64-dsp
/
mips_boot.lds
blob
bd7c0c0f3fd9b44048e93b49a1d8597cf73d60a7
1
OUTPUT_ARCH(mips)
2
SECTIONS
3
{
4
. = 0xffffffff80100000;
5
. = ALIGN((1 << 13));
6
.text :
7
{
8
*(.text)
9
*(.rodata)
10
*(.rodata.*)
11
}
12
13
__init_begin = .;
14
. = ALIGN((1 << 12));
15
.init.text : AT(ADDR(.init.text) - 0)
16
{
17
*(.init.text)
18
}
19
.init.data : AT(ADDR(.init.data) - 0)
20
{
21
*(.init.data)
22
}
23
. = ALIGN((1 << 12));
24
__init_end = .;
25
26
. = ALIGN((1 << 13));
27
.data :
28
{
29
*(.data)
30
}
31
}