seems to be able to parse signal tree

This commit is contained in:
Yehowshua Immanuel 2022-07-14 16:46:11 -04:00
parent 49d103fd56
commit 8bcd2bc8ec
7 changed files with 611 additions and 54 deletions

View file

@ -18,7 +18,7 @@ fn main() -> std::io::Result<()> {
let file = File::open(&args.path)?;
parse_vcd(file);
parse_vcd(file).unwrap();
Ok(())
}