| 529 | } |
| 530 | |
| 531 | std::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 | |
| 542 | u8 IOPMemoryInterface::Read8(u32 address, bool* valid) |
| 543 | { |
no test coverage detected