1
0
mirror of synced 2026-02-03 15:32:58 +00:00

Merge pull request #602 from litghost/add_eblif_extension

Map .eblif extension as blif.
This commit is contained in:
Clifford Wolf
2018-08-14 12:47:41 +02:00
committed by GitHub

View File

@@ -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")