aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/python_wrappers.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fixed issue when using a python plugin in the yosys shellBenedikt Tutzer2018-08-201-4/+7
|
* Python Passes can now be added with the -m option or with the plugin ↵Benedikt Tutzer2018-08-161-1/+65
| | | | command. There are still issues when run in shell mode, but they can be used just fine in a python script
* Added Wrappers for:Benedikt Tutzer2018-08-131-138/+2881
| | | | | | | | | | | | | | | -IdString -Const -CaseRule -SwitchRule -SyncRule -Process -SigChunk -SigBit -SigSpec With all their member functions as well as the remaining member functions for Cell, Wire, Module and Design and static functions of rtlil.h
* Saving id and pointer to c++ object. Object is valid only if both id and ↵Benedikt Tutzer2018-08-011-8/+29
| | | | pointer match the pair saved in the corresponding map in kernel/rtlil.cc. Otherwise, the object was destroyed in c++ and should not be accessed any more
* Setup is called automatically when the module is loaded, shutdown when ↵Benedikt Tutzer2018-08-011-16/+19
| | | | python exits
* Cleaned up commentsBenedikt Tutzer2018-08-011-9/+3
|
* Added Monitor class that can monitor all changes in a Design or in a ModuleBenedikt Tutzer2018-07-101-0/+119
|
* commands can now be run on arbitrary designs, not only on the active oneBenedikt Tutzer2018-07-091-0/+10
|
* multiple designs can now exist independent from each other. ↵Benedikt Tutzer2018-07-091-45/+47
| | | | Cells/Wires/Modules can now move to a different parent without referencing issues
* Introduced namespace and removed class-prefixes to increase readabilityBenedikt Tutzer2018-06-281-163/+165
|
* changed references from hash-ids to IdString namesBenedikt Tutzer2018-06-281-64/+32
|
* added wrappers for Design, Modules, Cells and WiresBenedikt Tutzer2018-06-251-0/+244