Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | backends: protobuf: removed protobuf backend | Aki Van Ness | 2022-10-10 | 1 | -175/+0 |
| | |||||
* | Fix hard-coded path to /bin/bash -> /usr/bin/env bash | Henner Zeller | 2022-09-24 | 1 | -1/+1 |
| | | | | | | | | | | On Posix systems, the path /bin/bash is not guaranteed to exist and it is more portable to use /usr/bin/env instead. Fixing this for yosys-config with is the most important for a functioning installation. Signed-off-by: Henner Zeller <h.zeller@acm.org> | ||||
* | misc: Added JNY schema definition | Aki Van Ness | 2022-08-02 | 1 | -0/+193 |
| | |||||
* | Merge pull request #3011 from DanielHuisman/pr-1 | Miodrag Milanović | 2022-05-25 | 1 | -2/+2 |
|\ | | | | | Update WaveDrom script URLs in YosysJS demo | ||||
| * | Update WaveDrom script URLs | Daniel Huisman | 2021-09-18 | 1 | -2/+2 |
| | | |||||
* | | Update URL to zlib | Miodrag Milanović | 2022-03-28 | 1 | -1/+1 |
| | | |||||
* | | Fix Visual Studio build | Miodrag Milanovic | 2022-02-02 | 1 | -1/+10 |
|/ | |||||
* | Use HTTPS for website links, gatecat email | Claire Xenia Wolf | 2021-06-09 | 1 | -1/+1 |
| | | | | | | | | | | git ls-tree -r --name-only HEAD | xargs sed -i -rf ~/fixemails.sed s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+(Shah|gatecat)\s+<(dave|david|gatecat)@(symbioticeda.com|yosyshq.com|ds0.me)>/gatecat <gatecat@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/|http://yosyshq.net/yosys/,https://yosyshq.net/yosys/,g; | ||||
* | Fixing old e-mail addresses and deadnames | Claire Xenia Wolf | 2021-06-08 | 2 | -4/+4 |
| | | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g; | ||||
* | Remove a few functions that, in fact, did not exist in the first place. | Marcelina Kościelnicka | 2021-03-06 | 1 | -1/+1 |
| | |||||
* | pyosys: Use C++11 override keyword for bindings | Xiretza | 2020-06-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | 7191dd16 dropped the YS_OVERRIDE macro, but it was still being generated by the python bindings generator, resulting in errors like these when compiled with ENABLE_PYOSYS=1: kernel/python_wrappers.cc:350:21: error: expected ‘;’ at end of member declaration 350 | virtual void help() YS_OVERRIDE; | ^ | ; kernel/python_wrappers.cc:350:23: error: ‘YS_OVERRIDE’ does not name a type 350 | virtual void help() YS_OVERRIDE; | ^~~~~~~~~~~ | ||||
* | idict handling in wrapper | Martin | 2020-05-19 | 1 | -7/+13 |
| | | | | | - Also, re-applied no-line-break workaround to rtlil.h to make parser catch all methods. | ||||
* | yosys-config: spelling | Eddie Hung | 2020-04-22 | 1 | -1/+1 |
| | |||||
* | Support custom PROGRAM_PREFIX | Miodrag Milanovic | 2020-04-10 | 1 | -4/+4 |
| | |||||
* | remove namespace mention from inheritance information | Stefan Biereigel | 2020-02-03 | 1 | -1/+1 |
| | |||||
* | expose polymorphism through python wrappers | Stefan Biereigel | 2020-02-03 | 1 | -2/+8 |
| | |||||
* | add inheritance for pywrap generators | Stefan Biereigel | 2020-01-30 | 1 | -0/+30 |
| | |||||
* | handle anonymous unions to fix #1080 | Patrick Eibl | 2019-11-21 | 1 | -0/+13 |
| | |||||
* | Fix renaming all classes to Cpp* | Benedikt Tutzer | 2019-10-09 | 1 | -2/+2 |
| | | | | | | (This is only relevant for classes that are exposed twice, one time as a base class and one time as a derived class that can in turn be overridden in python, but actually all others were renamed) | ||||
* | Expose global variables and allow logging to python streams | Benedikt Tutzer | 2019-10-09 | 1 | -6/+286 |
| | | | | | | Global variables are now accessible via the Yosys class. To capture Yosys output, once can now register an output stream in Pyosys. | ||||
* | Generate Python wrappers for inline constructors | Benedikt Tutzer | 2019-09-23 | 1 | -0/+2 |
| | | | | Fixes: #1353 | ||||
* | msys2: launcher: fix warnings and errors under g++ | Sean Cross | 2019-09-08 | 1 | -4/+4 |
| | | | | | | | | | | When building under G++, certain C-isms no longer work. For example, we must now cast the return from `calloc()`. Fix `launcher.c` so that it builds under whatever $CXX is set to, which is usually a C++ compiler. Signed-off-by: Sean Cross <sean@xobs.io> | ||||
* | Merge pull request #1112 from acw1251/pyosys_sigsig_issue | Clifford Wolf | 2019-08-25 | 1 | -16/+10 |
|\ | | | | | Fixed pyosys commands returning RTLIL::SigSig | ||||
| * | Fixed pyosys commands returning RTLIL::SigSig | acw1251 | 2019-06-19 | 1 | -16/+10 |
| | | |||||
* | | Fix formatting for msys2 mingw build using GetSize | Miodrag Milanovic | 2019-08-01 | 1 | -1/+2 |
| | | |||||
* | | Throw runtime exception when trying to convert a c++-pointer to a | Benedikt Tutzer | 2019-07-04 | 1 | -0/+3 |
|/ | | | | | | python-object in case the pointer is a nullptr to avoid a segfault. Fixes #1090 | ||||
* | remove boost/log/exceptions.hpp from wrapper generator | Stefan Biereigel | 2019-06-07 | 1 | -1/+0 |
| | |||||
* | Remove yosys_banner() from python wrapper init, fixes #1056 | Clifford Wolf | 2019-06-05 | 1 | -1/+0 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Cleaned up root directory | Benedikt Tutzer | 2019-04-30 | 2 | -0/+2101 |
| | |||||
* | Install launcher executable when running yosys-smtbmc on Windows. | William D. Jones | 2019-03-13 | 1 | -0/+358 |
| | | | | Signed-off-by: William D. Jones <thor0505@comcast.net> | ||||
* | Reduce amount of trailing whitespace in code base | Larry Doolittle | 2019-02-28 | 1 | -6/+6 |
| | |||||
* | Update to v2 YosysVS template | Clifford Wolf | 2018-09-28 | 1 | -4/+4 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Add Protobuf backend | Serge Bazanski | 2018-06-19 | 1 | -0/+175 |
| | | | | Signed-off-by: Serge Bazanski <q3k@symbioticeda.com> | ||||
* | Added examples/ top-level directory | Clifford Wolf | 2015-10-13 | 1 | -22/+0 |
| | |||||
* | Added ENABLE_LIBYOSYS Makefile option | Clifford Wolf | 2015-08-04 | 1 | -0/+1 |
| | |||||
* | Added libyosys.so build | Clifford Wolf | 2015-08-04 | 1 | -2/+2 |
| | |||||
* | Fixed YosysJS.create_worker() usage of this.url_prefix | Clifford Wolf | 2015-07-10 | 1 | -1/+1 |
| | |||||
* | Improved YosysJS WebWorker API | Clifford Wolf | 2015-07-04 | 3 | -10/+51 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 1 | -1/+1 |
| | |||||
* | Added YosysJS.create_worker() | Clifford Wolf | 2015-06-28 | 3 | -33/+145 |
| | |||||
* | Hotfix for yosysjs/demo03.html | Clifford Wolf | 2015-02-21 | 1 | -4/+4 |
| | |||||
* | YosysJS: Wait for Viz to load | Clifford Wolf | 2015-02-21 | 2 | -16/+33 |
| | |||||
* | YosysJS firefox fixes | Clifford Wolf | 2015-02-19 | 2 | -5/+5 |
| | |||||
* | YosysJS stuff | Clifford Wolf | 2015-02-19 | 2 | -2/+120 |
| | |||||
* | YosysJS fixes for firefox | Clifford Wolf | 2015-02-16 | 2 | -23/+41 |
| | |||||
* | More YosysJS stuff | Clifford Wolf | 2015-02-16 | 3 | -104/+78 |
| | |||||
* | Added YosysJS wrapper | Clifford Wolf | 2015-02-16 | 3 | -2/+263 |
| | |||||
* | More yosys.js improvements | Clifford Wolf | 2015-02-16 | 1 | -4/+29 |
| | |||||
* | Added Viz to yosys.js | Clifford Wolf | 2015-02-15 | 1 | -6/+75 |
| | |||||
* | Added yosys.js FS support | Clifford Wolf | 2015-02-15 | 1 | -2/+61 |
| |