20 lines
No EOL
226 B
Text
20 lines
No EOL
226 B
Text
ENTRY(main)
|
|
SECTIONS
|
|
{
|
|
. = 0x10000;
|
|
.text : AT(0x10000){
|
|
stage1/CMakeFiles/stage1.dir/stage1.c.obj(.text);
|
|
}
|
|
.othertext : {
|
|
*(.text);
|
|
}
|
|
.data : {
|
|
*(.data);
|
|
}
|
|
.rodata : {
|
|
*(.rodata);
|
|
}
|
|
.bss : {
|
|
*(.bss);
|
|
}
|
|
} |