| 154 | } |
| 155 | |
| 156 | bool DebugInterface::parseExpression(PostfixExpression& exp, u64& dest, std::string& error) |
| 157 | { |
| 158 | MipsExpressionFunctions funcs(this, nullptr, false); |
| 159 | return parsePostfixExpression(exp, &funcs, dest, error); |
| 160 | } |
| 161 | |
| 162 | DebugInterface& DebugInterface::get(BreakPointCpu cpu) |
| 163 | { |
no test coverage detected