Subversion Repositories HelenOS-historic

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1018 decky 1
/*
2
 *  MIPS linker script
3
 *
4
 */
5
 
6
OUTPUT_FORMAT(binary)
7
ENTRY(start)
8
 
9
SECTIONS {
10
	.image 0xbfc00000: AT (0) { 
11
		*(BOOTSTRAP)
12
		*(.text);
13
 
14
		*(.rodata);
15
		*(.rodata.*);
16
		*(.data);		/* initialized data */
17
		*(.sdata);
18
		*(.sdata2);
19
		*(.sbss);
20
		*(.bss);		/* uninitialized static variables */	
21
		*(COMMON); 		/* global variables */
22
		*(.reginfo);
23
	}
24
}