oleavr-rgl-a500-mini-linux-.../arch/mips/lasat/image/romscript.normal
Ole André Vadla Ravnås 169c65d57e Initial commit
2022-05-07 01:01:45 +02:00

23 lines
226 B
Text

OUTPUT_ARCH(mips)
SECTIONS
{
.text :
{
*(.text..start)
}
/* Data in ROM */
.data ALIGN(0x10) :
{
*(.data)
}
_image_start = ADDR(.data);
_image_size = SIZEOF(.data);
.other :
{
*(.*)
}
}