| 112 | } |
| 113 | |
| 114 | void do_binary( |
| 115 | parser_config const &config, std::string const &filename, |
| 116 | std::vector<uint8_t> const &opcodes) |
| 117 | { |
| 118 | if (config.verbose) { |
| 119 | std::cerr << "printing " << filename << '\n'; |
| 120 | } |
| 121 | |
| 122 | std::cout << show_opcodes(opcodes) << '\n'; |
| 123 | } |
| 124 | |
| 125 | int main(int const argc, char **const argv) |
| 126 | { |