mirror of https://github.com/PCSX2/pcsx2.git
fixed some syntax errors that were causing Linux compiling problems; thanks shanoah! i think theres still some more syntax bugs though...
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@58 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
8f61f59eba
commit
eba88009df
|
@ -57,7 +57,7 @@ char g_globalXMMLocked = 0;
|
|||
#endif
|
||||
|
||||
_xmmregs xmmregs[XMMREGS], s_saveXMMregs[XMMREGS];
|
||||
PCSX2_ALIGNED16(u64 g_globalXMMData[2*XMMREGS];)
|
||||
PCSX2_ALIGNED16(u64 g_globalXMMData[2*XMMREGS]);
|
||||
|
||||
// X86 caching
|
||||
_x86regs x86regs[X86REGS], s_saveX86regs[X86REGS];
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
#include "ix86/ix86.h"
|
||||
#include "iR5900.h"
|
||||
#include "iFPU.h"
|
||||
#include "stdio.h" //Linux needs this?
|
||||
#include "stdlib.h" //Linux needs this?
|
||||
|
||||
|
||||
#define REC_FPUBRANCH(f) \
|
||||
void f(); \
|
||||
|
|
|
@ -1356,7 +1356,7 @@ const static PCSX2_ALIGNED16(u32 VU_Underflow_Mask2[4]) = {0x007fffff, 0x007fff
|
|||
const static PCSX2_ALIGNED16(u32 VU_Zero_Mask[4]) = {0x00000000, 0x00000000, 0x00000000, 0x00000000};
|
||||
const static PCSX2_ALIGNED16(u32 VU_Zero_Helper_Mask[4]) = {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff};
|
||||
const static PCSX2_ALIGNED16(u32 VU_Signed_Zero_Mask[4]) = {0x80000000, 0x80000000, 0x80000000, 0x80000000};
|
||||
PCSX2_ALIGNED16(u64 TEMPXMMData[2];)
|
||||
PCSX2_ALIGNED16(u64 TEMPXMMData[2]);
|
||||
|
||||
// VU Flags
|
||||
// NOTE: Flags now compute under/over flows! :p
|
||||
|
@ -3712,8 +3712,8 @@ void recVUMI_CLIP(VURegs *VU, int info)
|
|||
/******************************/
|
||||
/* VU Lower instructions */
|
||||
/******************************/
|
||||
PCSX2_ALIGNED16(u64 DIV_TEMP_XMM[2];)
|
||||
PCSX2_ALIGNED16(u64 DIV_TEMP_XMM2[2];)
|
||||
PCSX2_ALIGNED16(u64 DIV_TEMP_XMM[2]);
|
||||
PCSX2_ALIGNED16(u64 DIV_TEMP_XMM2[2]);
|
||||
|
||||
void recVUMI_DIV(VURegs *VU, int info)
|
||||
{
|
||||
|
@ -4221,7 +4221,7 @@ void recVUMI_SQRT( VURegs *VU, int info )
|
|||
|
||||
}
|
||||
|
||||
PCSX2_ALIGNED16(u64 RSQRT_TEMP_XMM[2];)
|
||||
PCSX2_ALIGNED16(u64 RSQRT_TEMP_XMM[2]);
|
||||
|
||||
void recVUMI_RSQRT(VURegs *VU, int info)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue