32x: drc: new smc handling, write handlers adjusted.
[picodrive.git] / cpu / drc / cmn.h
1 typedef unsigned char  u8;
2 typedef unsigned short u16;
3 typedef unsigned int   u32;
4
5 #define DRC_TCACHE_SIZE         (512*1024)
6
7 extern u8 tcache[DRC_TCACHE_SIZE];
8
9 void drc_cmn_init(void);
10 void drc_cmn_cleanup(void);
11