yosys/passes/abc
Clifford Wolf b7dda72302 Changed users of cell->connections_ to the new API (sed command)
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;'
2014-07-26 15:58:23 +02:00
..
Makefile.inc Always use BLIF as ABC output format 2013-12-31 13:41:16 +01:00
abc.cc Changed users of cell->connections_ to the new API (sed command) 2014-07-26 15:58:23 +02:00
blifparse.cc Changed users of cell->connections_ to the new API (sed command) 2014-07-26 15:58:23 +02:00
blifparse.h Added abc -dff and -clk support 2013-12-31 21:25:09 +01:00