mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-30 07:53:16 +00:00
WIP -chparam support for hierarchy when verific
This commit is contained in:
parent
0f1a4cc03c
commit
a27b42e975
3 changed files with 41 additions and 19 deletions
|
@ -26,7 +26,7 @@ YOSYS_NAMESPACE_BEGIN
|
|||
extern int verific_verbose;
|
||||
|
||||
extern bool verific_import_pending;
|
||||
extern void verific_import(Design *design, std::string top = std::string());
|
||||
extern void verific_import(Design *design, const std::map<std::string,std::string> ¶meters, std::string top = std::string());
|
||||
|
||||
extern pool<int> verific_sva_prims;
|
||||
|
||||
|
@ -93,7 +93,7 @@ struct VerificImporter
|
|||
void merge_past_ffs_clock(pool<RTLIL::Cell*> &candidates, SigBit clock, bool clock_pol);
|
||||
void merge_past_ffs(pool<RTLIL::Cell*> &candidates);
|
||||
|
||||
void import_netlist(RTLIL::Design *design, Verific::Netlist *nl, std::set<Verific::Netlist*> &nl_todo);
|
||||
void import_netlist(RTLIL::Design *design, Verific::Netlist *nl, std::set<Verific::Netlist*> &nl_todo, bool top=false);
|
||||
};
|
||||
|
||||
void verific_import_sva_assert(VerificImporter *importer, Verific::Instance *inst);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue