Add this to pico.h
[picodrive.git] / cpu / drc / cmn.h
... / ...
CommitLineData
1typedef unsigned char u8;
2typedef signed char s8;
3typedef unsigned short u16;
4typedef unsigned int u32;
5
6#define DRC_TCACHE_SIZE (2*1024*1024)
7
8#ifdef VITA
9extern u8 *tcache;
10#else
11extern u8 tcache[DRC_TCACHE_SIZE];
12#endif
13
14void drc_cmn_init(void);
15void drc_cmn_cleanup(void);
16