You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			416 B
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			416 B
		
	
	
	
		
			Plaintext
		
	
SECTIONS
 | 
						|
{
 | 
						|
	. = 0;
 | 
						|
	_start = .;
 | 
						|
	.head : {
 | 
						|
		KEEP(*(.head))
 | 
						|
	}
 | 
						|
	. = ALIGN(0x1000);
 | 
						|
	.text : { *(.text) *(.text.*) *(.rodata) *(.rodata.*) }
 | 
						|
	. = ALIGN(0x1000);
 | 
						|
	.data : { *(.data) *(.data.*) *(.got) *(.toc) }
 | 
						|
	. = ALIGN(0x80);
 | 
						|
	__bss_start = .;
 | 
						|
	.bss : {
 | 
						|
		*(.dynsbss)
 | 
						|
		*(.sbss)
 | 
						|
		*(.scommon)
 | 
						|
		*(.dynbss)
 | 
						|
		*(.bss)
 | 
						|
		*(.common)
 | 
						|
		*(.bss.*)
 | 
						|
	}
 | 
						|
	. = ALIGN(0x80);
 | 
						|
	__bss_end = .;
 | 
						|
	. = . + 0x4000;
 | 
						|
	__stack_top = .;
 | 
						|
}
 |