Ask for the hook operation
()
| 509 | |
| 510 | |
| 511 | def ask_hook_operation(): |
| 512 | """ |
| 513 | Ask for the hook operation |
| 514 | """ |
| 515 | answer = questionary.select( |
| 516 | "Select an Option:", |
| 517 | choices=['read', 'write', 'emu_start', 'emu_stop', 'save']).ask() |
| 518 | |
| 519 | return answer.lower() |
| 520 | |
| 521 | |
| 522 | def get_bytes_size(): |