blob: 4ea5e28221f6cc07eaeec48cc615cc900f0065dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
yosys -import
read_verilog $::env(SOURCES)
synth_nexus -nolutram -nowidelut -noccu2 -nodsp
techmap -max_iter 1 -map $::env(TECHMAP)
# 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)
|