view cos/linker.ld @ 24:d8627924d40d

Split up in more files and reboot command
author windel
date Fri, 02 Dec 2011 14:00:02 +0100
parents b1fed2171e1a
children
line wrap: on
line source

OUTPUT_FORMAT("binary")

SECTIONS {
  .text 0x100000: 
  {
    *(.text)
  }

  .rodata ALIGN (4096) : 
  {
    *(.rodata)
  }

  .data ALIGN (4096) : 
  {
    *(.data)
  }

  .bss : {
    *(.bss)
   }

}