drc: revive x86 dynarec, support x86-64
[picodrive.git] / cpu / drc / cmn.h
1 typedef unsigned char  u8;
2 typedef signed char    s8;
3 typedef unsigned short u16;
4 typedef signed short   s16;
5 typedef unsigned int   u32;
6 typedef signed int     s32;
7
8 #define DRC_TCACHE_SIZE         (2*1024*1024)
9
10 extern u8 *tcache;
11
12 void drc_cmn_init(void);
13 void drc_cmn_cleanup(void);
14