mirror of https://github.com/PCSX2/pcsx2.git
minor update - i forgot to rename a few things
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@440 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
73d6a8aca0
commit
9f75e5b825
|
@ -57,7 +57,7 @@ __forceinline void mVUreset(microVU* mVU) {
|
|||
mVUclose(mVU); // Close
|
||||
|
||||
// Dynarec Cache
|
||||
mVU->cache = SysMmapEx(mVU->cacheAddr, mVU->cacheSize, 0x10000000, "Mega VU");
|
||||
mVU->cache = SysMmapEx(mVU->cacheAddr, mVU->cacheSize, 0x10000000, "Micro VU");
|
||||
if ( mVU->cache == NULL ) throw Exception::OutOfMemory(fmt_string( "microVU Error: failed to allocate recompiler memory! (addr: 0x%x)", params (u32)mVU->cache));
|
||||
|
||||
// Other Variables
|
||||
|
@ -278,4 +278,4 @@ __forceinline void runVUrec(u32 startPC, u32 cycles, int vuIndex) {
|
|||
else runVU1(µVU1, startPC, cycles);
|
||||
}
|
||||
|
||||
#endif // PCSX2_MEGAVU
|
||||
#endif // PCSX2_MICROVU
|
||||
|
|
|
@ -220,7 +220,7 @@ void mVULowerOP_T3_11(VURegs* VU, s32 info) {
|
|||
mVULowerOP_T3_11_OPCODE[ ( VU->code >> 6 ) & 0x1f ]( VU, info );
|
||||
}
|
||||
void mVUunknown(VURegs* VU, s32 info) {
|
||||
SysPrintf("Unknown Mega VU opcode called\n");
|
||||
SysPrintf("Unknown Micro VU opcode called\n");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#pragma once
|
||||
|
||||
//------------------------------------------------------------------
|
||||
// Mega VU Micromode Upper instructions
|
||||
// Micro VU Micromode Upper instructions
|
||||
//------------------------------------------------------------------
|
||||
|
||||
void mVU_ABS(VURegs *vuRegs, int info);
|
||||
|
@ -119,7 +119,7 @@ void mVU_ITOF15(VURegs *vuRegs, int info);
|
|||
void mVU_CLIP(VURegs *vuRegs, int info);
|
||||
|
||||
//------------------------------------------------------------------
|
||||
// Mega VU Micromode Lower instructions
|
||||
// Micro VU Micromode Lower instructions
|
||||
//------------------------------------------------------------------
|
||||
|
||||
void mVU_DIV(VURegs *vuRegs, int info);
|
||||
|
|
Loading…
Reference in New Issue