Skip to content

Commit

Permalink
Update to latest verific
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Jul 21, 2021
1 parent 7a25246 commit 987fca5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontends/verific/verific.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2847,7 +2847,7 @@ struct VerificPass : public Pass {

std::set<std::string> top_mod_names;

InitialAssertions::Rewrite(work);
InitialAssertions::Rewrite(work, &parameters);

if (mode_all)
{
Expand Down

0 comments on commit 987fca5

Please sign in to comment.