mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #3383 from jix/write_formal_map_roms
smt2, btor: Use memory_map -rom-only to make ROMs usable for k-induction
This commit is contained in:
commit
e6a5d84149
|
@ -1402,6 +1402,7 @@ struct BtorBackend : public Backend {
|
|||
log_header(design, "Executing BTOR backend.\n");
|
||||
|
||||
log_push();
|
||||
Pass::call(design, "memory_map -rom-only");
|
||||
Pass::call(design, "bmuxmap");
|
||||
Pass::call(design, "demuxmap");
|
||||
log_pop();
|
||||
|
|
|
@ -1609,6 +1609,7 @@ struct Smt2Backend : public Backend {
|
|||
log_header(design, "Executing SMT2 backend.\n");
|
||||
|
||||
log_push();
|
||||
Pass::call(design, "memory_map -rom-only");
|
||||
Pass::call(design, "bmuxmap");
|
||||
Pass::call(design, "demuxmap");
|
||||
log_pop();
|
||||
|
|
Loading…
Reference in New Issue