view cos/linker.ld @ 9:92ace1ca50a8

64 bits kernel without interrupts but with printf in C
author windel
date Sun, 13 Nov 2011 12:47:47 +0100
parents
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 = .;
   }

}