diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-21 08:02:19 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-11-06 17:19:46 +0000 |
| commit | dabd8f0b2e0ac08e60382c58a91f66d4e8929b03 (patch) | |
| tree | 5df43dcfa75f0c9b0b0c4cecb06d74462e2c9c3d /src | |
| parent | ad1660e0c629a0739c75d897da38eadbf0443d21 (diff) | |
| download | focaccia-dabd8f0b2e0ac08e60382c58a91f66d4e8929b03.tar.gz focaccia-dabd8f0b2e0ac08e60382c58a91f66d4e8929b03.zip | |
Print which instructions where disassembled
Diffstat (limited to 'src')
| -rw-r--r-- | src/focaccia/symbolic.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/focaccia/symbolic.py b/src/focaccia/symbolic.py index 816a2e1..da8ffc8 100644 --- a/src/focaccia/symbolic.py +++ b/src/focaccia/symbolic.py @@ -650,6 +650,7 @@ def collect_symbolic_trace(env: TraceEnvironment, # Disassemble instruction at the current PC try: instr = ctx.mdis.dis_instr(pc) + print(f'Disassembled instruction {instr} at {hex(pc)}') except: err = sys.exc_info()[1] |