able to parse all signal trees

This commit is contained in:
Yehowshua Immanuel 2022-07-15 20:48:02 -04:00
parent 217dea1d41
commit 298bbe1969
3 changed files with 137 additions and 44 deletions

View file

@ -18,7 +18,10 @@ fn main() -> std::io::Result<()> {
let file = File::open(&args.path)?;
parse_vcd(file).unwrap();
let vcd = parse_vcd(file).unwrap();
println!("printing signal tree");
vcd.print_scopes();
Ok(())
}