Home | History | Annotate | Line # | Download | only in romboot
      1 /*	$NetBSD: romboot.ldscript,v 1.2 2002/02/21 08:23:31 enami Exp $	*/
      2 
      3 OUTPUT_ARCH(mips)
      4 ENTRY(_start)
      5 SECTIONS
      6 {
      7   .text      :
      8   {
      9     _ftext = . ;
     10     *(.text)
     11    _etext = .;
     12   }
     13 }
     14