| 172 | |
| 173 | public: |
| 174 | Instruction(void) { |
| 175 | _text = "<empty>"; |
| 176 | } |
| 177 | Instruction(const std::string &instr_hex, const std::string &instr_text) { |
| 178 | _bytes = hex_to_bytes(instr_hex); |
| 179 | _text = adjust_text(_bytes, instr_text); |
nothing calls this directly
no test coverage detected