able to parse all signal trees
This commit is contained in:
parent
217dea1d41
commit
298bbe1969
3 changed files with 137 additions and 44 deletions
|
@ -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(())
|
||||
}
|
Reference in a new issue