30 lines
		
	
	
		
			566 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			566 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| MEMORY {
 | |
|    PROGROM (RX) : ORIGIN = 0x00000, LENGTH = 0x10000  /* 64kB ROM */
 | |
|    DATARAM (RW) : ORIGIN = 0x10000, LENGTH = 0x10000  /* 64kB RAM */   
 | |
| }
 | |
| 
 | |
| SECTIONS {
 | |
| 
 | |
|     .text : {
 | |
|         . = ALIGN(4);
 | |
| 	start_pipeline.o (.text)
 | |
|         *(.text*)
 | |
|     } > PROGROM
 | |
| 
 | |
|     .data : {
 | |
| 	. = ALIGN(4);
 | |
|         *(.data*)          
 | |
|         *(.sdata*)
 | |
|         *(.rodata*) 
 | |
|         *(.srodata*)
 | |
|         *(.bss*)
 | |
|         *(.sbss*)
 | |
| 	
 | |
|         *(COMMON)
 | |
|         *(.eh_frame)  
 | |
|         *(.eh_frame_hdr)
 | |
|         *(.init_array*)         
 | |
|         *(.gcc_except_table*)  
 | |
|     } > DATARAM
 | |
| }
 |