Mercurial > lcfOS
view cos/linker.ld @ 15:de004f808e56
Fixup in multidocument area stuff
author | windel |
---|---|
date | Tue, 15 Nov 2011 07:35:00 +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 = .; } }