()
| 70 | |
| 71 | |
| 72 | def raw_input() -> str: |
| 73 | print("Paste your disassembled code (doldisasm format):") |
| 74 | contents = [] |
| 75 | while True: |
| 76 | try: |
| 77 | line = input() |
| 78 | if line == "": |
| 79 | break |
| 80 | except EOFError: |
| 81 | break |
| 82 | contents.append(line) |
| 83 | return contents |
| 84 | |
| 85 | |
| 86 | def trim_inst(inst): |