summaryrefslogblamecommitdiff
path: root/src/user/link.ld
blob: 95c2fc1690a782e1ba878a7197cc0c637f2c7c70 (plain) (tree)
1
2
3
4


             
                 





















                                     
ENTRY (start)
 
SECTIONS{
    . = 0x100000;
 
    .text : {
        *(.text)
    }
 
    .rodata ALIGN (0x1000)  :{
        *(.rodata)
    }
 
    .data ALIGN (0x1000) : {
        *(.data)
    }
 
    .bss : {
        sbss = .;
        *(COMMON)
        *(.bss)
        ebss = .;
    }
 
	end = .; _end = .; __end = .;
}