Sign in
qemu-android
/
qemu-android
/
73c543776b6983178026f744d3579ae16ae9b5b2
/
.
/
tests
/
multiboot
/
link.ld
blob: 3d49b58c60c6c15a0705958df72087a74ceabc67 [
file
] [
log
] [
blame
]
ENTRY
(
_start
)
SECTIONS
{
.
=
0x100000
;
.
text
:
{
*(
multiboot
)
*(.
text
)
}
.
data ALIGN
(
4096
)
:
{
*(.
data
)
}
.
rodata ALIGN
(
4096
)
:
{
*(.
rodata
)
}
.
bss ALIGN
(
4096
)
:
{
*(.
bss
)
}
}