blob: a9dae7bf3a659a3b7b9d122615df669341ca1167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12yosys -import
read_verilog $::env(SOURCES)
synth_xilinx -nolutram -nowidelut -nosrl -nocarry -nodsp
# opt_expr -undriven makes sure all nets are driven, if only by the $undef
# net.
opt_expr -undriven
opt_clean
setundef -zero -params
write_json $::env(OUT_JSON)
|