mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			273 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			273 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| OUTPUT_ARCH( "riscv" )
 | |
| ENTRY(main)
 | |
| 
 | |
| SECTIONS
 | |
| {
 | |
|   . = 0x80000000;
 | |
|   .text : { *(.text) }
 | |
|   . = ALIGN(0x1000);
 | |
|   .tohost : { *(.tohost) }
 | |
|   . = ALIGN(0x1000);
 | |
|   .data : { *(.data) }
 | |
|   .data.string : { *(.data.string)}
 | |
|   . = ALIGN(0x1000);
 | |
|   .bss : { *(.bss) }
 | |
|   _end = .;
 | |
| }
 | |
| 
 |