diff options
Diffstat (limited to 'libpcsxcore/ix86_64')
| -rw-r--r-- | libpcsxcore/ix86_64/iR3000A-64.c | 8 | ||||
| -rw-r--r-- | libpcsxcore/ix86_64/ix86-64.c | 2 |
2 files changed, 4 insertions, 6 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 */ diff --git a/libpcsxcore/ix86_64/ix86-64.c b/libpcsxcore/ix86_64/ix86-64.c index a4399ab5..0582f351 100644 --- a/libpcsxcore/ix86_64/ix86-64.c +++ b/libpcsxcore/ix86_64/ix86-64.c @@ -46,8 +46,6 @@ s8 *x86Ptr; u8 *j8Ptr[32]; u32 *j32Ptr[32]; -extern void SysPrintf(char *fmt, ...); - void WriteRmOffset(x86IntRegType to, int offset) { if( (to&7) == ESP ) { |
