mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-23 16:04:37 +00:00
Added memory_share
This commit is contained in:
parent
a721f7d768
commit
ab4b26679f
3 changed files with 266 additions and 0 deletions
|
@ -33,6 +33,7 @@ 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(" memory_share\n");
|
||||
log(" memory_collect\n");
|
||||
log(" memory_map (skipped if called with -nomap)\n");
|
||||
log("\n");
|
||||
|
@ -58,6 +59,7 @@ struct MemoryPass : public Pass {
|
|||
extra_args(args, argidx, design);
|
||||
|
||||
Pass::call(design, "memory_dff");
|
||||
Pass::call(design, "memory_share");
|
||||
Pass::call(design, "memory_collect");
|
||||
|
||||
if (!flag_nomap)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue