mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	Add a file that has two text sections at different addresses, so we can test this behaviour in binman, once added. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			21 lines
		
	
	
		
			309 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			309 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright 2022 Google LLC
 | |
|  *
 | |
|  * Program containing two text sections
 | |
|  */
 | |
| 
 | |
| int __attribute__((section(".sram_data"))) data[29];
 | |
| 
 | |
| int __attribute__((section(".sram_code"))) calculate(int x)
 | |
| {
 | |
| 	data[0] = x;
 | |
| 
 | |
| 	return x * x;
 | |
| }
 | |
| 
 | |
| int main(void)
 | |
| {
 | |
| 	return calculate(123);
 | |
| }
 |