saving progress so far

This commit is contained in:
Yehowshua Immanuel 2022-07-25 21:16:15 -04:00
parent 3658833af3
commit 18a69872ab
8 changed files with 379 additions and 59 deletions

View file

@ -16,9 +16,17 @@ struct Cli {
fn main() -> std::io::Result<()> {
let args = Cli::parse();
use std::time::Instant;
let now = Instant::now();
let file = File::open(&args.path)?;
let vcd = parse_vcd(file).unwrap();
let elapsed = now.elapsed();
println!("Elapsed: {:.2?}", elapsed);
vcd.print_longest_signal();
// println!("printing signal tree");
// vcd.print_scopes();