mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:30:01 +00:00 
			
		
		
		
	 f081c76ccf
			
		
	
	
		f081c76ccf
		
	
	
	
	
		
			
			Move functions cpu_has_work() and cpu_pc_from_tb() from exec.h to cpu.h. This is needed by later patches. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			283 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			283 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef EXEC_SPARC_H
 | |
| #define EXEC_SPARC_H 1
 | |
| #include "config.h"
 | |
| #include "dyngen-exec.h"
 | |
| 
 | |
| register struct CPUSPARCState *env asm(AREG0);
 | |
| 
 | |
| #include "cpu.h"
 | |
| #include "exec-all.h"
 | |
| 
 | |
| #if !defined(CONFIG_USER_ONLY)
 | |
| #include "softmmu_exec.h"
 | |
| #endif /* !defined(CONFIG_USER_ONLY) */
 | |
| 
 | |
| #endif
 |