3 releases
0.1.2 | Sep 29, 2020 |
---|---|
0.1.1 | Apr 8, 2020 |
0.1.0 | Apr 8, 2020 |
#6 in #vcd
40 downloads per month
13KB
347 lines
Vcdump
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.
Install
You can install this tool with a simple cargo install vcdump
.
Usage
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'
Dependencies
~3.5–5MB
~89K SLoC