vcdump

Crates.iovcdump
lib.rsvcdump
version0.1.2
sourcesrc
created_at2020-04-08 16:21:20.376102
updated_at2020-09-29 20:21:16.368954
descriptionSimple tool to convert vcd files to json files so that you can use all your favorite command line tools to view the output of your vcd files.
homepage
repositoryhttps://github.com/sgpthomas/vcdump
max_upload_size
id227665
size21,459
Samuel Thomas (sgpthomas)

documentation

README

Vcdump latest

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'
Commit count: 10

cargo fmt