diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-12-23 05:10:37 -0800 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-12-23 05:10:37 -0800 |
commit | 9f69a70d746e7907eed494941bc89a18159caa1b (patch) | |
tree | a0e70a25f3b4090912866264431662de67e1f226 /kernel/yosys.cc | |
parent | ada98844b93e29fcbcfada02f89b2882d73182f1 (diff) | |
parent | 33a22f8768ee05325f87258fe09c21c648553747 (diff) | |
download | yosys-9f69a70d746e7907eed494941bc89a18159caa1b.tar.gz yosys-9f69a70d746e7907eed494941bc89a18159caa1b.tar.bz2 yosys-9f69a70d746e7907eed494941bc89a18159caa1b.zip |
Merge https://github.com/cliffordwolf/yosys
Diffstat (limited to 'kernel/yosys.cc')
-rw-r--r-- | kernel/yosys.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc index 08fee9741..3d0aca78e 100644 --- a/kernel/yosys.cc +++ b/kernel/yosys.cc @@ -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") |