(binary)
| 665 | |
| 666 | @exceptions_handler(Exception) |
| 667 | def print_functions(binary): |
| 668 | print("== Functions ==\n") |
| 669 | |
| 670 | print("Functions: ({:d})".format(len(binary.functions))) |
| 671 | for idx, f in enumerate(binary.functions): |
| 672 | print(" [{:d}] {}: 0x{:x}".format(idx, f.name, f.address)) |
| 673 | |
| 674 | @exceptions_handler(Exception) |
| 675 | def print_build_version(binary): |