3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-27 11:08:48 +00:00

Emit latch warning.

This commit is contained in:
nella 2026-06-17 11:27:43 +02:00
parent a46bc77eeb
commit c814ef35e3
7 changed files with 16 additions and 1 deletions

View file

@ -531,8 +531,10 @@ struct SynthLatticePass : public ScriptPass
{
if (abc2 || help_mode)
run("abc", " (only if -abc2)");
if (!asyncprld || help_mode)
if (!asyncprld || help_mode) {
run("check -nolatches", "(skip if -asyncprld)");
run("techmap -map +/lattice/latches_map.v", "(skip if -asyncprld)");
}
if (abc9) {
std::string abc9_opts;