diff options
Diffstat (limited to 'backends/smt2')
-rw-r--r-- | backends/smt2/smtbmc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index b587981bc..5b5ade103 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -637,7 +637,7 @@ def write_vcd_trace(steps_start, steps_stop, index): assert len(tdata) == len(rdata) netpath = mempath[:] - netpath[-1] += "<%d>" % int(addr, 2) + netpath[-1] += "<%0*x>" % ((len(addr)+3) // 4, int(addr, 2)) vcd.add_net([topmod] + netpath, width) for i in range(steps_start, steps_stop): |