1OUTPUT_ARCH(mips)
2SECTIONS
3{
4.data : {*(.data)}
5.bss : {*(.bss)}
6.text : 
7{
8. = ALIGN(0x500);
9*(.text.datapath); 
10*(.text);
11}
12}
13