blob: 17c944ad555c181225e2077d5991c31594d550ac (
plain) (
tree)
|
|
ENTRY (start)
INPUT (grapes.o)
SECTIONS{
. = 0x10000000;
.text : {
*(.text)
}
.rodata ALIGN (0x1000) :{
*(.rodata)
}
.data ALIGN (0x1000) : {
*(.data)
}
.bss : {
sbss = .;
*(COMMON)
*(.bss)
ebss = .;
}
end = .; _end = .; __end = .;
}
|