A simple tool to convert vcd Value Change Dump files into json files. The motivation for this is to allow vcd files to be better integrated into normal Unix command line workflows.
You can install this tool with a simple cargo install vcdump
.
vcdump
accepts a file as an argument or via stdin
.
- cat test.vcd | vcdump
- vcdump test.vcd
This produces a json
file on stdout
. You can then write this to a file, or use something
like jq
to explore the json file.
- vcdump test.vcd | jq '.TOP.main.a0.out'