mirror of https://github.com/PCSX2/pcsx2.git
VU: Tag which VU is being logged
This commit is contained in:
parent
d7e6ef4ce6
commit
aad4f3e753
|
@ -273,11 +273,11 @@ extern void iDumpVU1Registers();
|
||||||
#ifdef VUM_LOG
|
#ifdef VUM_LOG
|
||||||
|
|
||||||
#define IdebugUPPER(VU) \
|
#define IdebugUPPER(VU) \
|
||||||
VUM_LOG("%s", dis##VU##MicroUF(VU.code, VU.VI[REG_TPC].UL));
|
VUM_LOG("(VU%d) %s", VU.IsVU1(), dis##VU##MicroUF(VU.code, VU.VI[REG_TPC].UL));
|
||||||
#define IdebugLOWER(VU) \
|
#define IdebugLOWER(VU) \
|
||||||
VUM_LOG("%s", dis##VU##MicroLF(VU.code, VU.VI[REG_TPC].UL));
|
VUM_LOG("(VU%d) %s", VU.IsVU1(), dis##VU##MicroLF(VU.code, VU.VI[REG_TPC].UL));
|
||||||
#define _vuExecMicroDebug(VU) \
|
#define _vuExecMicroDebug(VU) \
|
||||||
VUM_LOG("_vuExecMicro: %8.8x", VU.VI[REG_TPC].UL);
|
VUM_LOG("(VU%d) _vuExecMicro: %8.8x", VU.IsVU1(), VU.VI[REG_TPC].UL);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue