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