forked from YosysHQ/yosys
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ USING_YOSYS_NAMESPACE | |
# error "Only YosysHQ flavored Verific is supported. Please contact [email protected] for commercial support for Yosys+Verific." | ||
#endif | ||
|
||
#if YOSYSHQ_VERIFIC_API_VERSION < 20210602 | ||
#if YOSYSHQ_VERIFIC_API_VERSION < 20210603 | ||
# error "Please update your version of YosysHQ flavored Verific." | ||
#endif | ||
|
||
|
@@ -1961,7 +1961,7 @@ void verific_import(Design *design, const std::map<std::string,std::string> &par | |
for (const auto &i : parameters) | ||
verific_params.Insert(i.first.c_str(), i.second.c_str()); | ||
|
||
InitialAssertions::Rewrite("work"); | ||
InitialAssertions::Rewrite("work", &verific_params); | ||
|
||
if (top.empty()) { | ||
netlists = hier_tree::ElaborateAll(&veri_libs, &vhdl_libs, &verific_params); | ||
|
@@ -2847,7 +2847,7 @@ struct VerificPass : public Pass { | |
|
||
std::set<std::string> top_mod_names; | ||
|
||
InitialAssertions::Rewrite(work); | ||
InitialAssertions::Rewrite(work, ¶meters); | ||
|
||
if (mode_all) | ||
{ | ||
|