diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-21 08:02:19 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-30 13:41:07 +0000 |
| commit | df560423852068be87c38eb7434eb7b4cf2a53ca (patch) | |
| tree | 33c484ee67f30c5c354f98d175bc91a0040f203d | |
| parent | f953e91e6a927d205a8d3c1ba98f848d701d0218 (diff) | |
| download | focaccia-df560423852068be87c38eb7434eb7b4cf2a53ca.tar.gz focaccia-df560423852068be87c38eb7434eb7b4cf2a53ca.zip | |
Print which instructions where disassembled
| -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 542e9c0..3255e39 100644 --- a/src/focaccia/symbolic.py +++ b/src/focaccia/symbolic.py @@ -648,6 +648,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] |