picodrive/cpu/drc/cmn.h
notaz bf092a3631 drc: split disassembly to separate pass
allows easier analysis
2013-07-20 20:33:44 +03:00

12 lines
248 B
C

typedef unsigned char u8;
typedef signed char s8;
typedef unsigned short u16;
typedef unsigned int u32;
#define DRC_TCACHE_SIZE (2*1024*1024)
extern u8 tcache[DRC_TCACHE_SIZE];
void drc_cmn_init(void);
void drc_cmn_cleanup(void);