| 621 | } |
| 622 | |
| 623 | std::string R5900DebugInterface::disasm(u32 address, bool simplify) |
| 624 | { |
| 625 | std::string out; |
| 626 | |
| 627 | u32 op = Read32(address); |
| 628 | R5900::disR5900Fasm(out, op, address, simplify); |
| 629 | return out; |
| 630 | } |
| 631 | |
| 632 | bool R5900DebugInterface::isValidAddress(u32 addr) |
| 633 | { |
no test coverage detected