yosys/frontends/ilang
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
..
.gitignore added .gitignore files 2013-01-05 11:19:11 +01:00
Makefile.inc Added "make PRETTY=1" 2014-07-24 17:15:01 +02:00
ilang_frontend.cc Added help messages to ilang and verilog frontends 2013-03-01 08:03:00 +01:00
ilang_frontend.h initial import 2013-01-05 11:13:26 +01:00
lexer.l Added "autoidx" statement to ilang file format 2014-07-21 15:15:18 +02:00
parser.y Changed users of cell->connections_ to the new API (sed command) 2014-07-26 15:58:23 +02:00