| 338 | } |
| 339 | |
| 340 | static 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 | |
| 350 | static void searchWorkerByteArray(DebugInterface* cpu, SearchType searchType, SearchComparison searchComparison, std::vector<SearchResult>& searchResults, u32 start, u32 end, QByteArray searchValue) |
| 351 | { |
no test coverage detected