mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #602 from litghost/add_eblif_extension
Map .eblif extension as blif.
This commit is contained in:
commit
2353d28ff2
|
@ -825,6 +825,8 @@ void run_frontend(std::string filename, std::string command, std::string *backen
|
|||
command = "vhdl";
|
||||
else if (filename.size() > 4 && filename.substr(filename.size()-5) == ".blif")
|
||||
command = "blif";
|
||||
else if (filename.size() > 5 && filename.substr(filename.size()-6) == ".eblif")
|
||||
command = "blif";
|
||||
else if (filename.size() > 4 && filename.substr(filename.size()-5) == ".json")
|
||||
command = "json";
|
||||
else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".il")
|
||||
|
|
Loading…
Reference in New Issue