3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-30 04:15:52 +00:00

Disable Liberty support, add blackbox Verilog module, and add attribute parsing into Yosys Liberty parser

This commit is contained in:
Akash Levy 2024-05-28 01:47:46 -07:00
parent b90c20cd14
commit 4062825a9e
2 changed files with 9 additions and 0 deletions

View file

@ -3459,6 +3459,9 @@ struct VerificPass : public Pass {
veri_file::AddFileExtMode(".svh", veri_file::SYSTEM_VERILOG);
veri_file::AddFileExtMode(".svp", veri_file::SYSTEM_VERILOG);
veri_file::AddFileExtMode(".h", veri_file::SYSTEM_VERILOG);
// Add blackbox modules
veri_file::AddVFile("preqorsor/data/blackboxes.v");
// Select analyze function
auto analyze_function = (args[argidx] == "-auto_discover") ? hdl_file_sort::AnalyzeDiscoveredFiles : hdl_file_sort::AnalyzeSortedFiles;