Sign in
gem5
/
public
/
gem5
/
cb1eb7e29d196cc4febca194b7d295e88c37c093
/
.
/
tests
/
test-progs
/
asmtest
/
src
/
riscv
/
env
/
p
/
link.ld
blob: b3e315e781401819ed774c3beedb8cab5c703238 [
file
] [
log
] [
blame
]
OUTPUT_ARCH
(
"riscv"
)
ENTRY
(
_start
)
SECTIONS
{
.
=
0x80000000
;
.
text
.
init
:
{
*(.
text
.
init
)
}
.
=
ALIGN
(
0x1000
);
.
tohost
:
{
*(.
tohost
)
}
.
=
ALIGN
(
0x1000
);
.
text
:
{
*(.
text
)
}
.
=
ALIGN
(
0x1000
);
.
data
:
{
*(.
data
)
}
.
bss
:
{
*(.
bss
)
}
_end
=
.;
}