NOT cell in cmos_cells.lib not used in synthesis #3936
Unanswered
shengqilong
asked this question in
Q&A
Replies: 1 comment 3 replies
-
That is because in verilog semantics, a buffer is a no-op, so |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After synthesis, the netlist contains the assign statement,Why isn't the BUF cell mapped to the netlist instead of the assign statement?$syn_lib contains the BUF cell declaration
yosys -q -p "read -sv xxx.sv;
hierarchy -check -top xxx;
flatten;
proc; fsm; opt; memory; opt;
techmap; opt;
write_json xxx.json;
dfflibmap -liberty $syn_lib;
abc -liberty $syn_lib;
opt_clean -purge;
write_verilog -noattr -noexpr xxx_netlist.v; "
Beta Was this translation helpful? Give feedback.
All reactions