Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vcdcat misses an input signal #36

Open
arunpatro opened this issue Dec 4, 2023 · 1 comment
Open

vcdcat misses an input signal #36

arunpatro opened this issue Dec 4, 2023 · 1 comment

Comments

@arunpatro
Copy link

I have in my .vcd file, a variable called tb.clk. We can see it here like this ->

from vcdvcd import VCDVCD

vcd = VCDVCD('test/rotate100/wave.vcd')
print(vcd.references_to_ids.keys())
dict_keys(['tb.stim1.clk', 'tb.tb_mismatch', 'tb.clk', 'tb.load', 'tb.ena[1:0]', 'tb.data[99:0]', 'tb.q_ref[99:0]', 'tb.q_dut[99:0]'])

But when I do vcdcat test/rotate100/wave.vcd, I get a .txt file that is like this:

0 time
1 tb.data[99:0]
2 tb.ena[1:0]
3 tb.load
4 tb.q_dut[99:0]
5 tb.q_ref[99:0]
6 tb.stim1.clk
7 tb.tb_mismatch

0                         1 2 3                         4                         5 6 7 
=======================================================================================
0                         x x 1                         x                         x 0 0
5 4c0895e818484d609b1f05663 x 1                         x                         x 1 0
10 4c0895e818484d609b1f05663 x 1                         x                         x 0 0
15 d46df998db2c2846589375212 x 1 4c0895e818484d609b1f05663 4c0895e818484d609b1f05663 1 0
20 d

Why does it skip the tb.clk signal all together?

@cirosantilli
Copy link
Owner

Hi, can you provide a sample vcd to reproduce?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants