view linker.ld @ 1:42ba76f77035 default tip

the kernel with output and mem alloc
author meillo@marmaro.de
date Sun, 01 Nov 2009 23:50:51 +0100
parents 99db6262c157
children
line wrap: on
line source

ENTRY (loader)

SECTIONS{
    . = 0x00200000;

    .multiboot :{
        *(.multiboot)
    }

    .text :{
        *(.text)
    }

    .rodata  : {
        *(.rodata)
    }

    .data  : {
        *(.data)
    }

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