Debugger: Notate Memcpys directly as well.

This commit is contained in:
Unknown W. Brackets 2021-02-03 00:09:21 -08:00
parent 88e2b9b740
commit e7b968be73
13 changed files with 31 additions and 33 deletions

View file

@ -33,7 +33,7 @@ HLEHelperThread::HLEHelperThread(const char *threadName, u32 instructions[], u32
u32 instrBytes = instrCount * sizeof(u32);
u32 totalBytes = instrBytes + sizeof(u32) * 2;
AllocEntry(totalBytes);
Memory::Memcpy(entry_, instructions, instrBytes);
Memory::Memcpy(entry_, instructions, instrBytes, "HelperMIPS");
// Just to simplify things, we add the return here.
Memory::Write_U32(MIPS_MAKE_JR_RA(), entry_ + instrBytes + 0);