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