(binary)
| 332 | |
| 333 | @exceptions_handler(Exception) |
| 334 | def print_thread_command(binary): |
| 335 | |
| 336 | format_str = "{:<13} {:<30}" |
| 337 | format_hex = "{:<13} 0x{:<28x}" |
| 338 | format_dec = "{:<13} {:<30d}" |
| 339 | |
| 340 | print("== Thread Command ==") |
| 341 | cmd = binary.thread_command |
| 342 | |
| 343 | print(format_hex.format("Flavor:", cmd.flavor)) |
| 344 | print(format_hex.format("Count:", cmd.count)) |
| 345 | print(format_hex.format("PC:", cmd.pc)) |
| 346 | |
| 347 | print("") |
| 348 | |
| 349 | @exceptions_handler(Exception) |
| 350 | def print_rpath_command(binary): |