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:
cottonvibes 2009-02-07 01:25:16 +00:00
parent 73d6a8aca0
commit 9f75e5b825
3 changed files with 5 additions and 5 deletions

View File

@ -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(&microVU1, startPC, cycles);
}
#endif // PCSX2_MEGAVU
#endif // PCSX2_MICROVU

View File

@ -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

View File

@ -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);