Home | History | Annotate | Line # | Download | only in romboot
romboot.ldscript revision 1.1.2.3
      1 /*	$NetBSD: romboot.ldscript,v 1.1.2.3 2002/03/16 15:57:59 jdolecek Exp $	*/
      2 
      3 OUTPUT_ARCH(mips)
      4 ENTRY(_start)
      5 SECTIONS
      6 {
      7   .text      :
      8   {
      9     _ftext = . ;
     10     *(.text)
     11    _etext = .;
     12   }
     13 }
     14