diff options
Diffstat (limited to 'libpcsxcore/ix86_64/iR3000A-64.c')
| -rw-r--r-- | libpcsxcore/ix86_64/iR3000A-64.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpcsxcore/ix86_64/iR3000A-64.c b/libpcsxcore/ix86_64/iR3000A-64.c index 399ec09f..babec3f1 100644 --- a/libpcsxcore/ix86_64/iR3000A-64.c +++ b/libpcsxcore/ix86_64/iR3000A-64.c @@ -33,16 +33,16 @@ uptr* psxRecLUT; -#define PTRMULT (sizeof(uptr)/sizeof(u32)) +#define PTRMULT (sizeof(uptr) / sizeof(u32)) #undef PC_REC #undef PC_REC8 #undef PC_REC16 #undef PC_REC32 -#define PC_REC(x) (psxRecLUT[(x) >> 16] + PTRMULT*((x) & 0xffff)) -#define PC_RECP(x) (*(uptr*)PC_REC(x)) +#define PC_REC(x) (psxRecLUT[(x) >> 16] + PTRMULT * ((x) & 0xffff)) +#define PC_RECP(x) (*(uptr *)PC_REC(x)) -#define RECMEM_SIZE (PTRMULT*8*1024*1024) +#define RECMEM_SIZE (PTRMULT * 8 * 1024 * 1024) static char *recMem; /* the recompiled blocks will be here */ static char *recRAM; /* and the ptr to the blocks here */ |
