3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

Added tribuf command

This commit is contained in:
Clifford Wolf 2015-08-16 12:55:25 +02:00
parent ff50bc2ac3
commit 9c33172ece
3 changed files with 189 additions and 0 deletions

View file

@ -82,6 +82,7 @@ struct SynthIce40Pass : public Pass {
log(" flatten: (unless -noflatten)\n");
log(" proc\n");
log(" flatten\n");
log(" tribuf -logic\n");
log("\n");
log(" coarse:\n");
log(" synth -run coarse\n");
@ -201,6 +202,7 @@ struct SynthIce40Pass : public Pass {
{
Pass::call(design, "proc");
Pass::call(design, "flatten");
Pass::call(design, "tribuf -logic");
}
if (check_label(active, run_from, run_to, "coarse"))