drc: revive x86 dynarec, support x86-64

This commit is contained in:
notaz 2017-12-11 02:53:17 +02:00
parent 91be5ebd10
commit 898d51a7fd
10 changed files with 285 additions and 123 deletions

View file

@ -1,7 +1,9 @@
typedef unsigned char u8;
typedef signed char s8;
typedef unsigned short u16;
typedef signed short s16;
typedef unsigned int u32;
typedef signed int s32;
#define DRC_TCACHE_SIZE (2*1024*1024)