 542b10bd14
			
		
	
	
		542b10bd14
		
	
	
	
	
		
			
			My default header template is GPLv3 but for QEMU code we really should stick to GPLv2-or-later (allowing others to up-license it if they wish). While this is test code we should still be consistent on the source distribution. I wrote all of this code so its not a problem. However there remains one GPLv3 file left which is the crt0-tc2x.S for TriCore. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20240227144335.1196131-2-alex.bennee@linaro.org>
		
			
				
	
	
		
			23 lines
		
	
	
		
			471 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			471 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Semihosting Tests - ARM Helper
 | |
|  *
 | |
|  * Copyright (c) 2019, 2024
 | |
|  * Written by Alex Bennée <alex.bennee@linaro.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: GPL-2.0-or-later
 | |
|  */
 | |
| 
 | |
| uintptr_t __semi_call(uintptr_t type, uintptr_t arg0)
 | |
| {
 | |
|     register uintptr_t t asm("r0") = type;
 | |
|     register uintptr_t a0 asm("r1") = arg0;
 | |
| #ifdef __thumb__
 | |
| #  define SVC  "svc 0xab"
 | |
| #else
 | |
| #  define SVC  "svc 0x123456"
 | |
| #endif
 | |
|     asm(SVC : "=r" (t)
 | |
|         : "r" (t), "r" (a0));
 | |
|     return t;
 | |
| }
 |