fix typo of script name

This commit is contained in:
saji 2024-05-05 03:05:46 -05:00
parent f8884d4db5
commit dcacb44cce

View file

@ -114,7 +114,7 @@ fn synth(s: SynthArgs) -> Result<()> {
let mut yosys = Command::new("yosys");
let wsize = wanted_size - 1;
yosys
.args(["-c", "shink_sop.tcl", "--"])
.args(["-c", "shrink_sop.tcl", "--"])
.arg(&s.netlist)
.arg(name)
.arg(wsize.to_string());