(VITA) Dynarec working
[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
88f7643f 8#ifdef VITA
9extern u8 *tcache;
10#else
f4bb5d6b 11extern u8 tcache[DRC_TCACHE_SIZE];
88f7643f 12#endif
41397701 13
14void drc_cmn_init(void);
15void drc_cmn_cleanup(void);
16