pytv 0.5.6

Python Templated Verilog
Documentation
1
2
3
4
5
6
7
8
use pytv::Convert;

fn main() {
    let convert = Convert::from_args();
    convert
        .convert_to_file()
        .unwrap_or_else(|err| eprintln!("Error: {}", err));
}