mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-05 02:40:25 +00:00
Add support for memory writes in processes.
This commit is contained in:
parent
c00a29296c
commit
4e03865d5b
16 changed files with 246 additions and 44 deletions
|
@ -43,6 +43,7 @@ struct ProcPass : public Pass {
|
|||
log(" proc_mux\n");
|
||||
log(" proc_dlatch\n");
|
||||
log(" proc_dff\n");
|
||||
log(" proc_memwr\n");
|
||||
log(" proc_clean\n");
|
||||
log("\n");
|
||||
log("This replaces the processes in the design with multiplexers,\n");
|
||||
|
@ -102,6 +103,7 @@ struct ProcPass : public Pass {
|
|||
Pass::call(design, ifxmode ? "proc_mux -ifx" : "proc_mux");
|
||||
Pass::call(design, "proc_dlatch");
|
||||
Pass::call(design, "proc_dff");
|
||||
Pass::call(design, "proc_memwr");
|
||||
Pass::call(design, "proc_clean");
|
||||
|
||||
log_pop();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue