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