mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 20:50:51 +00:00
Added "proc_dlatch"
This commit is contained in:
parent
87819c62fa
commit
554a8df5e2
3 changed files with 311 additions and 1 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue