mirror of https://github.com/PCSX2/pcsx2.git
Linux/microVU: Uninline a function that isn't inlinable according to gcc, so microVU is compilable on Linux.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1221 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
3019f7d02c
commit
134f02babb
|
@ -55,7 +55,7 @@ microVUt(void) mVUinit(VURegs* vuRegsPtr) {
|
|||
}
|
||||
|
||||
// Resets Rec Data
|
||||
microVUt(void) mVUreset() {
|
||||
microVUx(void) mVUreset() {
|
||||
|
||||
microVU* mVU = mVUx;
|
||||
mVUprint((vuIndex) ? "microVU1: reset" : "microVU0: reset");
|
||||
|
|
|
@ -135,7 +135,7 @@ extern void (*mVU_LOWER_OPCODE[128])( VURegs* VU, s32 info );
|
|||
|
||||
// Main Functions
|
||||
microVUt(void) mVUinit(VURegs*);
|
||||
microVUt(void) mVUreset();
|
||||
microVUx(void) mVUreset();
|
||||
microVUt(void) mVUclose();
|
||||
microVUt(void) mVUclear(u32, u32);
|
||||
|
||||
|
@ -151,7 +151,7 @@ microVUf(void) mVUopL();
|
|||
microVUt(void) mVUclearProg(microVU* mVU, int progIndex);
|
||||
microVUt(int) mVUfindLeastUsedProg(microVU* mVU);
|
||||
microVUt(int) mVUsearchProg();
|
||||
microVUt(void) mVUcacheProg(microVU* mVU, int progIndex);
|
||||
microVUt(void) mVUcacheProg(int progIndex);
|
||||
void* __fastcall mVUexecuteVU0(u32 startPC, u32 cycles);
|
||||
void* __fastcall mVUexecuteVU1(u32 startPC, u32 cycles);
|
||||
|
||||
|
|
Loading…
Reference in New Issue