b0cf6af7c2
SVN-Revision: 4040
20 lines
253 B
Text
20 lines
253 B
Text
OUTPUT_ARCH(mips)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
. = @LOADADDR@;
|
|
.text :
|
|
{
|
|
_ftext = . ;
|
|
*(.text)
|
|
*(.rodata)
|
|
} =0
|
|
|
|
.reginfo : { *(.reginfo) }
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
}
|