├── Makefile ├── NANGATE45 ├── par.tcl ├── power.tcl ├── sta.tcl └── syn.tcl ├── NOCGEN ├── arb_gen.pl ├── cb_gen.pl ├── define_gen.pl ├── fifo_gen.pl ├── inputc_gen.pl ├── mux_gen.pl ├── muxcont_gen.pl ├── noc_gen.pl ├── noc_test_gen.pl ├── outputc_gen.pl ├── power_gen.pl ├── router_gen.pl ├── rtcomp_gen.pl ├── try.pl ├── vc_gen.pl └── vcmux_gen.pl ├── README.md └── nocgen.pl /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/Makefile -------------------------------------------------------------------------------- /NANGATE45/par.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NANGATE45/par.tcl -------------------------------------------------------------------------------- /NANGATE45/power.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NANGATE45/power.tcl -------------------------------------------------------------------------------- /NANGATE45/sta.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NANGATE45/sta.tcl -------------------------------------------------------------------------------- /NANGATE45/syn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NANGATE45/syn.tcl -------------------------------------------------------------------------------- /NOCGEN/arb_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/arb_gen.pl -------------------------------------------------------------------------------- /NOCGEN/cb_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/cb_gen.pl -------------------------------------------------------------------------------- /NOCGEN/define_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/define_gen.pl -------------------------------------------------------------------------------- /NOCGEN/fifo_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/fifo_gen.pl -------------------------------------------------------------------------------- /NOCGEN/inputc_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/inputc_gen.pl -------------------------------------------------------------------------------- /NOCGEN/mux_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/mux_gen.pl -------------------------------------------------------------------------------- /NOCGEN/muxcont_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/muxcont_gen.pl -------------------------------------------------------------------------------- /NOCGEN/noc_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/noc_gen.pl -------------------------------------------------------------------------------- /NOCGEN/noc_test_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/noc_test_gen.pl -------------------------------------------------------------------------------- /NOCGEN/outputc_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/outputc_gen.pl -------------------------------------------------------------------------------- /NOCGEN/power_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/power_gen.pl -------------------------------------------------------------------------------- /NOCGEN/router_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/router_gen.pl -------------------------------------------------------------------------------- /NOCGEN/rtcomp_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/rtcomp_gen.pl -------------------------------------------------------------------------------- /NOCGEN/try.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/try.pl -------------------------------------------------------------------------------- /NOCGEN/vc_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/vc_gen.pl -------------------------------------------------------------------------------- /NOCGEN/vcmux_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/NOCGEN/vcmux_gen.pl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/README.md -------------------------------------------------------------------------------- /nocgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matutani/nocgen/HEAD/nocgen.pl --------------------------------------------------------------------------------