├── .gitignore ├── COPYRIGHT ├── Makefile.in ├── README ├── VERSION ├── antenna.c ├── config.guess ├── config.sub ├── configure ├── configure.in ├── console.tcl ├── def.c ├── def.h ├── delays.c ├── graphics.c ├── graphics.h ├── install-sh ├── lef.c ├── lef.h ├── lib ├── osu035_stdcells.lef └── route.cfg ├── main.c ├── mask.c ├── mask.h ├── maze.c ├── maze.h ├── node.c ├── node.h ├── output.c ├── output.h ├── point.c ├── point.h ├── qconfig.c ├── qconfig.h ├── qrouter.c ├── qrouter.h ├── qrouter.sh.in ├── qrouter.tcl.in ├── qrouterexec.c ├── qrouternullg.c ├── symbol.map ├── tclqrouter.c ├── tkSimple.c ├── tkSimple.h └── tkcon.tcl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4.90 2 | -------------------------------------------------------------------------------- /antenna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/antenna.c -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/configure.in -------------------------------------------------------------------------------- /console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/console.tcl -------------------------------------------------------------------------------- /def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/def.c -------------------------------------------------------------------------------- /def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/def.h -------------------------------------------------------------------------------- /delays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/delays.c -------------------------------------------------------------------------------- /graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/graphics.c -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/graphics.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/install-sh -------------------------------------------------------------------------------- /lef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/lef.c -------------------------------------------------------------------------------- /lef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/lef.h -------------------------------------------------------------------------------- /lib/osu035_stdcells.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/lib/osu035_stdcells.lef -------------------------------------------------------------------------------- /lib/route.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/lib/route.cfg -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/main.c -------------------------------------------------------------------------------- /mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/mask.c -------------------------------------------------------------------------------- /mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/mask.h -------------------------------------------------------------------------------- /maze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/maze.c -------------------------------------------------------------------------------- /maze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/maze.h -------------------------------------------------------------------------------- /node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/node.c -------------------------------------------------------------------------------- /node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/node.h -------------------------------------------------------------------------------- /output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/output.c -------------------------------------------------------------------------------- /output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/output.h -------------------------------------------------------------------------------- /point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/point.c -------------------------------------------------------------------------------- /point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/point.h -------------------------------------------------------------------------------- /qconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qconfig.c -------------------------------------------------------------------------------- /qconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qconfig.h -------------------------------------------------------------------------------- /qrouter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qrouter.c -------------------------------------------------------------------------------- /qrouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qrouter.h -------------------------------------------------------------------------------- /qrouter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qrouter.sh.in -------------------------------------------------------------------------------- /qrouter.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qrouter.tcl.in -------------------------------------------------------------------------------- /qrouterexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qrouterexec.c -------------------------------------------------------------------------------- /qrouternullg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/qrouternullg.c -------------------------------------------------------------------------------- /symbol.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/symbol.map -------------------------------------------------------------------------------- /tclqrouter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/tclqrouter.c -------------------------------------------------------------------------------- /tkSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/tkSimple.c -------------------------------------------------------------------------------- /tkSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/tkSimple.h -------------------------------------------------------------------------------- /tkcon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RTimothyEdwards/qrouter/HEAD/tkcon.tcl --------------------------------------------------------------------------------