mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:44:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			267 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			267 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef HW_CRIS_BOOT_H
 | |
| #define HW_CRIS_BOOT_H
 | |
| 
 | |
| struct cris_load_info
 | |
| {
 | |
|     const char *image_filename;
 | |
|     const char *cmdline;
 | |
|     int image_size;
 | |
|     ram_addr_t ram_size;
 | |
| 
 | |
|     hwaddr entry;
 | |
| };
 | |
| 
 | |
| void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
 | |
| 
 | |
| #endif
 | 
