Sign in
gem5
/
public
/
gem5-resources
/
15bc6210964d826a6c3a511baff0a5308afaef51
/
.
/
src
/
simple
/
link.ld
blob: d3abb9e4dcce626b298669299dd177c65471aa75 [
file
] [
log
] [
blame
]
ENTRY
(
_start
)
SECTIONS
{
.
text
:
{
*/
bootloader
.
o
(.
text
)
*(.
text
)
*(.
rodata
)
*(.
data
)
*(
COMMON
)
}
.
bss
:
{
*(.
bss
)
}
heap_low
=
.;
.
=
.
+
0x1000000
;
heap_top
=
.;
.
=
.
+
0x1000000
;
stack_top
=
.;
}