mirror of https://github.com/YosysHQ/yosys.git
Added AIGER back-end to automatic back-end detection
This commit is contained in:
parent
f31e6a7174
commit
f144adec58
|
@ -903,6 +903,8 @@ void run_backend(std::string filename, std::string command, RTLIL::Design *desig
|
|||
command = "verilog";
|
||||
else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".il")
|
||||
command = "ilang";
|
||||
else if (filename.size() > 4 && filename.substr(filename.size()-4) == ".aig")
|
||||
command = "aiger";
|
||||
else if (filename.size() > 5 && filename.substr(filename.size()-5) == ".blif")
|
||||
command = "blif";
|
||||
else if (filename.size() > 5 && filename.substr(filename.size()-5) == ".edif")
|
||||
|
|
Loading…
Reference in New Issue