mirror of
				https://github.com/RaySollium99/picodrive.git
				synced 2025-10-27 00:29:39 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			801 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			801 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| /* svp */
 | |
| #include "svp/ssp16.h"
 | |
| 
 | |
| typedef struct {
 | |
| 	unsigned char iram_rom[0x20000]; // IRAM (0-0x7ff) and program ROM (0x800-0x1ffff)
 | |
| 	unsigned char dram[0x20000];
 | |
| 	ssp1601_t ssp1601;
 | |
| } svp_t;
 | |
| 
 | |
| extern svp_t *svp;
 | |
| 
 | |
| void PicoSVPInit(void);
 | |
| void PicoSVPStartup(void);
 | |
| void PicoSVPMemSetup(void);
 | |
| 
 | |
| /* standard/ssf2 mapper */
 | |
| extern int carthw_ssf2_active;
 | |
| extern unsigned char carthw_ssf2_banks[8];
 | |
| void carthw_ssf2_startup(void);
 | |
| void carthw_ssf2_write8(unsigned int a, unsigned int d);
 | |
| 
 | |
| /* misc */
 | |
| void carthw_Xin1_startup(void);
 | |
| void carthw_realtec_startup(void);
 | |
| void carthw_radica_startup(void);
 | |
| void carthw_pier_startup(void);
 | |
| 
 | |
| void carthw_sprot_startup(void);
 | |
| void carthw_sprot_new_location(unsigned int a,
 | |
| 	unsigned int mask, unsigned short val, int is_ro);
 | |
| 
 | |
| void carthw_prot_lk3_startup(void);
 | 
