MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / iopMemReadString

Function iopMemReadString

pcsx2/IopMem.cpp:531–540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

529}
530
531std::string iopMemReadString(u32 mem, int maxlen)
532{
533 std::string ret;
534 char c;
535
536 while ((c = iopMemRead8(mem++)) && maxlen--)
537 ret.push_back(c);
538
539 return ret;
540}
541
542u8 IOPMemoryInterface::Read8(u32 address, bool* valid)
543{

Callers 8

Kprintf_HLEFunction · 0.85
LoadFuncsFunction · 0.85
ReleaseFuncsFunction · 0.85
irxImportLog_recFunction · 0.85
irxImportExecFunction · 0.85
getIOPModulesFunction · 0.85
psxRecompileIrxImportFunction · 0.85

Calls 2

iopMemRead8Function · 0.85
push_backMethod · 0.45

Tested by

no test coverage detected