view cos/linker.ld @ 14:a58904747019

Added asm interrupt handler things, not yet working
author windel
date Mon, 14 Nov 2011 22:45:55 +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 = .;
   }

}