about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-10-21 08:02:19 +0000
committerTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-11-06 17:19:46 +0000
commitdabd8f0b2e0ac08e60382c58a91f66d4e8929b03 (patch)
tree5df43dcfa75f0c9b0b0c4cecb06d74462e2c9c3d
parentad1660e0c629a0739c75d897da38eadbf0443d21 (diff)
downloadfocaccia-dabd8f0b2e0ac08e60382c58a91f66d4e8929b03.tar.gz
focaccia-dabd8f0b2e0ac08e60382c58a91f66d4e8929b03.zip
Print which instructions where disassembled
-rw-r--r--src/focaccia/symbolic.py1
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]