mirror of
				https://git.proxmox.com/git/qemu
				synced 2025-10-31 11:31:38 +00:00 
			
		
		
		
	 935f7a2b42
			
		
	
	
		935f7a2b42
		
	
	
	
	
		
			
			This is FSF big endian core implemented through linux overlay. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			470 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			470 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "cpu.h"
 | |
| #include "exec-all.h"
 | |
| #include "gdbstub.h"
 | |
| #include "qemu-common.h"
 | |
| #include "host-utils.h"
 | |
| 
 | |
| #include "core-fsf/core-isa.h"
 | |
| #include "overlay_tool.h"
 | |
| 
 | |
| static const XtensaConfig fsf = {
 | |
|     .name = "fsf",
 | |
|     .options = XTENSA_OPTIONS,
 | |
|     /* GDB for this core is not supported currently */
 | |
|     .nareg = XCHAL_NUM_AREGS,
 | |
|     .ndepc = 1,
 | |
|     EXCEPTIONS_SECTION,
 | |
|     INTERRUPTS_SECTION,
 | |
|     TLB_SECTION,
 | |
|     .clock_freq_khz = 10000,
 | |
| };
 | |
| 
 | |
| REGISTER_CORE(fsf)
 |