├── .gitignore ├── Bender.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── scripts ├── compile_vsim.sh ├── run_vsim.sh ├── run_xsim.sh └── vivado │ └── run_xsim.tcl ├── src ├── deprecated │ ├── cluster_clk_cells.sv │ ├── cluster_pwr_cells.sv │ ├── generic_memory.sv │ ├── generic_rom.sv │ ├── pad_functional.sv │ ├── pulp_buffer.sv │ ├── pulp_clk_cells.sv │ ├── pulp_clock_gating_async.sv │ └── pulp_pwr_cells.sv ├── fpga │ ├── pad_functional_xilinx.sv │ ├── tc_clk_xilinx.sv │ └── tc_sram_xilinx.sv ├── rtl │ ├── tc_clk.sv │ ├── tc_sram.sv │ └── tc_sram_impl.sv └── tc_pwr.sv ├── src_files.yml └── test └── tb_tc_sram.sv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/.gitignore -------------------------------------------------------------------------------- /Bender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/Bender.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/README.md -------------------------------------------------------------------------------- /scripts/compile_vsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/scripts/compile_vsim.sh -------------------------------------------------------------------------------- /scripts/run_vsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/scripts/run_vsim.sh -------------------------------------------------------------------------------- /scripts/run_xsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/scripts/run_xsim.sh -------------------------------------------------------------------------------- /scripts/vivado/run_xsim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/scripts/vivado/run_xsim.tcl -------------------------------------------------------------------------------- /src/deprecated/cluster_clk_cells.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/cluster_clk_cells.sv -------------------------------------------------------------------------------- /src/deprecated/cluster_pwr_cells.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/cluster_pwr_cells.sv -------------------------------------------------------------------------------- /src/deprecated/generic_memory.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/generic_memory.sv -------------------------------------------------------------------------------- /src/deprecated/generic_rom.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/generic_rom.sv -------------------------------------------------------------------------------- /src/deprecated/pad_functional.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/pad_functional.sv -------------------------------------------------------------------------------- /src/deprecated/pulp_buffer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/pulp_buffer.sv -------------------------------------------------------------------------------- /src/deprecated/pulp_clk_cells.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/pulp_clk_cells.sv -------------------------------------------------------------------------------- /src/deprecated/pulp_clock_gating_async.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/pulp_clock_gating_async.sv -------------------------------------------------------------------------------- /src/deprecated/pulp_pwr_cells.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/deprecated/pulp_pwr_cells.sv -------------------------------------------------------------------------------- /src/fpga/pad_functional_xilinx.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/fpga/pad_functional_xilinx.sv -------------------------------------------------------------------------------- /src/fpga/tc_clk_xilinx.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/fpga/tc_clk_xilinx.sv -------------------------------------------------------------------------------- /src/fpga/tc_sram_xilinx.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/fpga/tc_sram_xilinx.sv -------------------------------------------------------------------------------- /src/rtl/tc_clk.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/rtl/tc_clk.sv -------------------------------------------------------------------------------- /src/rtl/tc_sram.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/rtl/tc_sram.sv -------------------------------------------------------------------------------- /src/rtl/tc_sram_impl.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/rtl/tc_sram_impl.sv -------------------------------------------------------------------------------- /src/tc_pwr.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src/tc_pwr.sv -------------------------------------------------------------------------------- /src_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/src_files.yml -------------------------------------------------------------------------------- /test/tb_tc_sram.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/tech_cells_generic/HEAD/test/tb_tc_sram.sv --------------------------------------------------------------------------------