diff options
Diffstat (limited to 'misc/example.cc')
-rw-r--r-- | misc/example.cc | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/misc/example.cc b/misc/example.cc deleted file mode 100644 index a8244ac4e..000000000 --- a/misc/example.cc +++ /dev/null @@ -1,21 +0,0 @@ -// clang -o example -std=c++11 -I/usr/include/tcl8.5 -I include/ example.cc objs/*.o -lstdc++ -lm -lrt -lreadline -lffi -ldl -ltcl8.5 - -#include <yosys.h> - -int main() -{ - Yosys::log_streams.push_back(&std::cout); - Yosys::log_error_stderr = true; - - Yosys::yosys_setup(); - Yosys::yosys_banner(); - - Yosys::run_pass("read_verilog example.v"); - Yosys::run_pass("synth -noabc"); - Yosys::run_pass("clean -purge"); - Yosys::run_pass("write_blif example.blif"); - - Yosys::yosys_shutdown(); - return 0; -} - |