Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed May 10, 2024
1 parent b18f228 commit b1c8e83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions amaranth/sim/pysim.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ def traverse_traces(traces):
for trace_signal in trace._rhs_signals():
for name in self.gtkw_signal_names[trace_signal]:
self.gtkw_save.trace(name)
elif isinstance(traces, ValueLike):
traverse_traces(Value.cast(traces))
elif isinstance(traces, MemoryData):
for row_names in self.gtkw_memory_names[traces]:
for name in row_names:
Expand Down

0 comments on commit b1c8e83

Please sign in to comment.