3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-10 05:00:52 +00:00

Added translation from read-feedback to en-signals in memory_share

This commit is contained in:
Clifford Wolf 2014-07-18 16:46:40 +02:00
parent 44f13aff92
commit e441f07d89
3 changed files with 264 additions and 10 deletions

View file

@ -33,7 +33,9 @@ struct MemoryPass : public Pass {
log("This pass calls all the other memory_* passes in a useful order:\n");
log("\n");
log(" memory_dff\n");
log(" opt_clean\n");
log(" memory_share\n");
log(" opt_clean\n");
log(" memory_collect\n");
log(" memory_map (skipped if called with -nomap)\n");
log("\n");
@ -59,7 +61,9 @@ struct MemoryPass : public Pass {
extra_args(args, argidx, design);
Pass::call(design, "memory_dff");
Pass::call(design, "opt_clean");
Pass::call(design, "memory_share");
Pass::call(design, "opt_clean");
Pass::call(design, "memory_collect");
if (!flag_nomap)