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