Sign in
googlers
/
maze
/
linux
/
031fc8f313f55595c677c50b1d6d5c410fadee60
/
.
/
arch
/
mips
/
lasat
/
image
/
romscript.normal
blob: 988f8ad189cb19d29c47a489f07e10190b934985 [
file
] [
log
] [
blame
]
OUTPUT_ARCH
(
mips
)
SECTIONS
{
.
text
:
{
*(.
text
.
start
)
}
/* Data in ROM */
.
data ALIGN
(
0x10
)
:
{
*(.
data
)
}
_image_start
=
ADDR
(.
data
);
_image_size
=
SIZEOF
(.
data
);
.
other
:
{
*(.*)
}
}