Sign in
qemu
/
qemu
/
a42706dbe4f14416df5c65de1a90d72cbc338530
/
.
/
tests
/
multiboot
/
link.ld
blob: 2eafcffc4f123255befccf11db5b4828be7ee322 [
file
] [
log
] [
blame
]
ENTRY
(
_start
)
SECTIONS
{
.
=
0x100000
;
.
text
:
AT
(
ADDR
(.
text
))
{
*(
multiboot
)
*(.
text
)
}
.
data ALIGN
(
4096
)
:
AT
(
ADDR
(.
data
))
{
*(.
data
)
}
.
rodata ALIGN
(
4096
)
:
AT
(
ADDR
(.
rodata
))
{
*(.
rodata
)
}
.
bss ALIGN
(
4096
)
:
{
*(.
bss
)
}
}