view cos/linker.ld @ 13:d07d4701a103

Cleanup of header files
author windel
date Mon, 14 Nov 2011 21:44:35 +0100
parents 92ace1ca50a8
children b1fed2171e1a
line wrap: on
line source

ENTRY(loader)

SECTIONS {
  . = 0x00100000;

  .text : {
    *(.text)
   }

  .rodata ALIGN (0x1000) : {
    
    *(.rodata)
  }

  .data ALIGN (0x1000) : {
    *(.data)
  }

  .bss : {
    sbss = .;
    *(COMMON)
    *(.bss)
    ebss = .;
   }

}