aboutsummaryrefslogblamecommitdiffstats
path: root/arch/mips/lasat/image/romscript.normal
blob: 0864c963e188d6872385606ecaeb917d23319ccb (plain) (tree)
1
2
3
4
5
6
7





                 
                   















                              
OUTPUT_ARCH(mips)

SECTIONS
{
  .text :
  {
    *(.text..start)
  }

  /* Data in ROM */

  .data ALIGN(0x10) :
  {
    *(.data)
  }
  _image_start = ADDR(.data);
  _image_size = SIZEOF(.data);

  .other :
  {
    *(.*)
  }
}