32x: interpreter-wrap drc works (demos only). SVP drc refactoring.
[picodrive.git] / cpu / drc / cmn.h
CommitLineData
679af8a3 1typedef unsigned char u8;
2typedef unsigned short u16;
3typedef unsigned int u32;
4
5#define DRC_TCACHE_SIZE (512*1024)
6
7extern u32 tcache[DRC_TCACHE_SIZE/4];
41397701 8
9void drc_cmn_init(void);
10void drc_cmn_cleanup(void);
11