libretro: satisfy vita's dynarec needs in a cleaner way
[picodrive.git] / cpu / drc / cmn.h
CommitLineData
679af8a3 1typedef unsigned char u8;
bf092a36 2typedef signed char s8;
679af8a3 3typedef unsigned short u16;
4typedef unsigned int u32;
5
a2b8c5a5 6#define DRC_TCACHE_SIZE (2*1024*1024)
679af8a3 7
df925153 8extern u8 *tcache;
41397701 9
10void drc_cmn_init(void);
11void drc_cmn_cleanup(void);
12