view cos/linker.ld @ 20:b1fed2171e1a

Now working with 2 MB pages
author windel
date Mon, 28 Nov 2011 20:54:40 +0100
parents 92ace1ca50a8
children
line wrap: on
line source

OUTPUT_FORMAT("binary")

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

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

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

  .bss : {
    *(.bss)
   }

}