summaryrefslogtreecommitdiff
path: root/passes/proc/proc_dff.cc
Commit message (Collapse)AuthorAge
* Added log_warning() APIClifford Wolf2014-11-09
|
* namespace YosysClifford Wolf2014-09-27
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-31
|
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-31
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-28
|
* Using new obj iterator API in a few placesClifford Wolf2014-07-27
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-27
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-26
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-26
| | | | | | | | | git grep -l 'connections_' | xargs sed -i -r -e ' s/(->|\.)connections_\["([^"]*)"\] = (.*);/\1set("\2", \3);/g; s/(->|\.)connections_\["([^"]*)"\]/\1get("\2")/g; s/(->|\.)connections_.at\("([^"]*)"\)/\1get("\2")/g; s/(->|\.)connections_.push_back/\1connect/g; s/(->|\.)connections_/\1connections()/g;'
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-26
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-25
|
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-24
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-23
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-22
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-22
|
* Replaced depricated NEW_WIRE macro with module->addWire() callsClifford Wolf2014-07-21
|
* Do not create $dffsr cells with no-op resets in proc_dffClifford Wolf2014-06-19
|
* Added support for complex set-reset flip-flops in proc_dffClifford Wolf2013-10-24
|
* Improved handling of dff with async resetsClifford Wolf2013-10-21
|
* Added dffsr support to proc_dff passClifford Wolf2013-10-18
|
* fixed typosJohann Glaser2013-03-18
|
* Added help messages to proc_* passesClifford Wolf2013-03-01
|
* initial importClifford Wolf2013-01-05