mirror of
				https://github.com/RaySollium99/picodrive.git
				synced 2025-10-27 00:29:39 -04:00 
			
		
		
		
	 679af8a3f4
			
		
	
	
		679af8a3f4
		
	
	
	
	
		
			
			git-svn-id: file:///home/notaz/opt/svn/PicoDrive@812 be3aeb3a-fb24-0410-a615-afba39da0efa
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
| typedef unsigned char  u8;
 | |
| typedef unsigned short u16;
 | |
| typedef unsigned int   u32;
 | |
| 
 | |
| #define DRC_TCACHE_SIZE         (512*1024)
 | |
| 
 | |
| extern u32 tcache[DRC_TCACHE_SIZE/4];
 | |
| 
 | |
| void drc_cmn_init(void);
 | |
| void drc_cmn_cleanup(void);
 | |
| 
 |