SECTIONS
 {
   . = 0x00000;
   .text : { start.o(.text)
             stanford.o(.text) 
              }
   . = 0x10000;
   .data : { *(.data) }
   .bss : { *(.bss) }
 }
