Error when trying to visualize a .vcd #3
-
Hi, For more context I've used the trace that is generated by eqy when comparing gate.v and gold.v since my goal is to connect them. Note that I've uploaded the files as txt, as Github didn't allow me to upload them with the original extension name. Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi Miquel, When defining the names of the signals, you need to include the Verilog hierarchy in the naming. In your case, this means naming your signal |
Beta Was this translation helpful? Give feedback.
Hi Miquel,
When defining the names of the signals, you need to include the Verilog hierarchy in the naming. In your case, this means naming your signal
miter.gate.clk
instead of simplyclk
. This is necessary because multiple signals calledclk
can exist in different scopes. In addition, I found a formatting difference in your generated VCD file compared to ones I've seen before, I'll push a fix for this soon.