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