3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-09 20:50:51 +00:00

Added "proc_dlatch"

This commit is contained in:
Clifford Wolf 2015-02-12 16:56:01 +01:00
parent 87819c62fa
commit 554a8df5e2
3 changed files with 311 additions and 1 deletions

View file

@ -40,10 +40,12 @@ struct ProcPass : public Pass {
log(" proc_init\n");
log(" proc_arst\n");
log(" proc_mux\n");
log(" proc_dlatch\n");
log(" proc_dff\n");
log(" proc_clean\n");
log("\n");
log("This replaces the processes in the design with multiplexers and flip-flops.\n");
log("This replaces the processes in the design with multiplexers,\n");
log("flip-flops and latches.\n");
log("\n");
log("The following options are supported:\n");
log("\n");
@ -77,6 +79,7 @@ struct ProcPass : public Pass {
else
Pass::call(design, "proc_arst -global_arst " + global_arst);
Pass::call(design, "proc_mux");
Pass::call(design, "proc_dlatch");
Pass::call(design, "proc_dff");
Pass::call(design, "proc_clean");