3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-09 04:31:25 +00:00

Added GP_DFF INIT parameter

This commit is contained in:
Clifford Wolf 2016-03-23 08:12:54 +01:00
parent 4f2ea221dc
commit 456c10f16e
2 changed files with 4 additions and 0 deletions

View file

@ -98,6 +98,7 @@ struct SynthGreenPAK4Pass : public Pass {
log("\n");
log(" map_cells:\n");
log(" techmap -map +/greenpak4/cells_map.v\n");
log(" dffinit -ff GP_DFF Q INIT\n");
log(" clean\n");
log("\n");
log(" check:\n");
@ -205,6 +206,7 @@ struct SynthGreenPAK4Pass : public Pass {
if (check_label(active, run_from, run_to, "map_cells"))
{
Pass::call(design, "techmap -map +/greenpak4/cells_map.v");
Pass::call(design, "dffinit -ff GP_DFF Q INIT");
Pass::call(design, "clean");
}