Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
3024 decky 1
	.boot 0x0: AT (0) {
2
		*(BOOTSTRAP);
3
		*(.text);
4
 
5
		*(.rodata);
6
		*(.rodata.*);
7
		*(.data);		/* initialized data */
8
		*(.sdata);
9
		*(.sdata2);
10
		*(.sbss);
11
		*(.scommon);
12
		*(.bss);		/* uninitialized static variables */	
13
		*(COMMON); 		/* global variables */
14
		*(.reginfo);
15
 
16
		. = 0x4000;
17
		*(PT);			/* page table placed at 0x4000 */