mirror of https://github.com/YosysHQ/yosys.git
Add .sv support to "hierarchy -libdir"
This commit is contained in:
parent
315d5e32bf
commit
491c352da7
|
@ -179,6 +179,12 @@ bool expand_module(RTLIL::Design *design, RTLIL::Module *module, bool flag_check
|
||||||
goto loaded_module;
|
goto loaded_module;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
filename = dir + "/" + RTLIL::unescape_id(cell->type) + ".sv";
|
||||||
|
if (check_file_exists(filename)) {
|
||||||
|
Frontend::frontend_call(design, NULL, filename, "verilog -sv");
|
||||||
|
goto loaded_module;
|
||||||
|
}
|
||||||
|
|
||||||
filename = dir + "/" + RTLIL::unescape_id(cell->type) + ".il";
|
filename = dir + "/" + RTLIL::unescape_id(cell->type) + ".il";
|
||||||
if (check_file_exists(filename)) {
|
if (check_file_exists(filename)) {
|
||||||
Frontend::frontend_call(design, NULL, filename, "ilang");
|
Frontend::frontend_call(design, NULL, filename, "ilang");
|
||||||
|
|
Loading…
Reference in New Issue