Trouble synthesising a circuit #3408
-
Is it possible to synthesise this and write it to aiger ? I tried doing
which had worked when I tried to convert a different verilog design to aiger before. If I try it on this, I get an error on the I am new to all of this, especially this tool, so excuse any ignorance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In this case, the verilog design uses async resets, which are not representable in the AIGER file format. You can use the
See |
Beta Was this translation helpful? Give feedback.
In this case, the verilog design uses async resets, which are not representable in the AIGER file format. You can use the
async2sync
anddffunmap
passes to convert everything into plain AIGER compatible FFs, (equivalent assuming all input signals are synchronized to the clock). The complete flow would be:See
help async2sync
andhelp dffunmap
for more details.