Subversion Repositories HelenOS

Rev

Rev 218 | Rev 342 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 218 Rev 287
Line 31... Line 31...
31
		LONG(kdata_end - kdata_start);
31
		LONG(kdata_end - kdata_start);
32
		hardcoded_load_address = .;
32
		hardcoded_load_address = .;
33
		LONG(0x80000000);
33
		LONG(0x80000000);
34
		*(.bss);		/* uninitialized static variables */	
34
		*(.bss);		/* uninitialized static variables */	
35
		*(COMMON); 		/* global variables */
35
		*(COMMON); 		/* global variables */
-
 
36
 
-
 
37
		symbol_table = .;
-
 
38
                *(symtab.*);            /* Symbol table, must be LAST symbol!*/
-
 
39
 
36
		kdata_end = .;
40
		kdata_end = .;
37
	}
41
	}
38
}
42
}