some incomplete changes
This commit is contained in:
parent
29d72b6e9c
commit
49d103fd56
5 changed files with 53 additions and 13 deletions
|
@ -5,7 +5,7 @@ pub mod test;
|
|||
use test::*;
|
||||
|
||||
pub mod vcd;
|
||||
use vcd::*;
|
||||
use vcd::parse_vcd;
|
||||
|
||||
#[derive(Parser)]
|
||||
struct Cli {
|
||||
|
@ -16,6 +16,7 @@ struct Cli {
|
|||
fn main() -> std::io::Result<()> {
|
||||
let args = Cli::parse();
|
||||
|
||||
|
||||
let file = File::open(&args.path)?;
|
||||
parse_vcd(file);
|
||||
|
||||
|
|
Reference in a new issue