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

Function readArrayAtAddress

pcsx2-qt/Debugger/Memory/MemorySearchView.cpp:340–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340static QByteArray readArrayAtAddress(DebugInterface* cpu, u32 address, u32 length)
341{
342 QByteArray readArray;
343 for (u32 i = address; i < address + length; i++)
344 {
345 readArray.append(cpu->Read8(i));
346 }
347 return readArray;
348}
349
350static void searchWorkerByteArray(DebugInterface* cpu, SearchType searchType, SearchComparison searchComparison, std::vector<SearchResult>& searchResults, u32 start, u32 end, QByteArray searchValue)
351{

Callers 1

searchWorkerByteArrayFunction · 0.85

Calls 2

appendMethod · 0.45
Read8Method · 0.45

Tested by

no test coverage detected