view cos/hello/hello.ld @ 298:f7c3d38d0a47

Added reference to read the docs
author Windel Bouwman
date Sun, 01 Dec 2013 17:45:22 +0100
parents d3c4bf3720a3
children
line wrap: on
line source

OUTPUT_FORMAT("binary")

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

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

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

  .bss : {
    *(.bss)
   }

}