├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── bin │ └── generate_cache.py │ ├── config │ └── designs.json │ ├── designs.yml │ ├── docs.yml │ ├── general_ci.yml │ ├── lint.yml │ ├── montage.yml │ ├── run-designs.yml │ └── wheels.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── Makefile ├── _static │ └── custom.css ├── conf.py ├── designs.rst ├── index.rst ├── modules.rst └── scgallery.rst ├── images ├── black_parrot_job0_asap7_asap7sc7p5t_rvt.png ├── black_parrot_job0_freepdk45_nangate45.png ├── cva6_job0_asap7_asap7sc7p5t_rvt.png ├── cva6_job0_freepdk45_nangate45.png ├── montage.jpg ├── swerv_job0_asap7_asap7sc7p5t_rvt.png └── wally_job0_asap7_asap7sc7p5t_rvt.png ├── pyproject.toml ├── scgallery ├── __init__.py ├── apps │ └── sc_gallery.py ├── checklists │ ├── asicflow_rules.py │ └── asicflow_template.json ├── design.py ├── designs │ ├── __init__.py │ ├── aes │ │ ├── aes.py │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aes_cipher_top.v │ │ │ ├── aes_inv_cipher_top.v │ │ │ ├── aes_inv_sbox.v │ │ │ ├── aes_key_expand_128.v │ │ │ ├── aes_rcon.v │ │ │ ├── aes_sbox.v │ │ │ └── timescale.v │ ├── black_parrot │ │ ├── black_parrot.py │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── extra │ │ │ └── lambda.v │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pickled.v │ ├── blinky │ │ ├── blinky.py │ │ └── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ ├── caliptra │ │ ├── __init__.py │ │ ├── constraints │ │ │ ├── datavault │ │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ │ ├── nangate45.sdc │ │ │ │ ├── sg13g2_stdcell.sdc │ │ │ │ └── sky130hd.sdc │ │ │ ├── keyvault │ │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ │ ├── nangate45.sdc │ │ │ │ ├── sg13g2_stdcell.sdc │ │ │ │ └── sky130hd.sdc │ │ │ └── sha512 │ │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ │ ├── nangate45.sdc │ │ │ │ ├── sg13g2_stdcell.sdc │ │ │ │ └── sky130hd.sdc │ │ ├── datavault.py │ │ ├── keyvault.py │ │ ├── sha512.py │ │ └── src │ │ │ ├── __init__.py │ │ │ ├── datavault.py │ │ │ ├── keyvault.py │ │ │ ├── libs.py │ │ │ ├── pcrvault.py │ │ │ ├── sha512.py │ │ │ └── top_defines.py │ ├── cva6 │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── cva6.py │ │ └── extra │ │ │ ├── hpdcache_sram_1rw.sv │ │ │ ├── hpdcache_sram_wbyteenable_1rw.sv │ │ │ └── sram_cache.sv │ ├── darkriscv │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── darkriscv.py │ │ └── extra │ │ │ └── darkram.v │ ├── dynamic_node │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── dynamic_node.py │ ├── ethmac │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── ethmac.py │ │ ├── extra │ │ │ └── lambda.v │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eth_clockgen.v │ │ │ ├── eth_cop.v │ │ │ ├── eth_crc.v │ │ │ ├── eth_fifo.v │ │ │ ├── eth_maccontrol.v │ │ │ ├── eth_macstatus.v │ │ │ ├── eth_miim.v │ │ │ ├── eth_outputcontrol.v │ │ │ ├── eth_random.v │ │ │ ├── eth_receivecontrol.v │ │ │ ├── eth_register.v │ │ │ ├── eth_registers.v │ │ │ ├── eth_rxaddrcheck.v │ │ │ ├── eth_rxcounters.v │ │ │ ├── eth_rxethmac.v │ │ │ ├── eth_rxstatem.v │ │ │ ├── eth_shiftreg.v │ │ │ ├── eth_spram_256x32.v │ │ │ ├── eth_top.v │ │ │ ├── eth_transmitcontrol.v │ │ │ ├── eth_txcounters.v │ │ │ ├── eth_txethmac.v │ │ │ ├── eth_txstatem.v │ │ │ ├── eth_wishbone.v │ │ │ ├── ethmac.v │ │ │ ├── ethmac_defines.v │ │ │ └── timescale.v │ ├── fazyrv │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── extra │ │ │ ├── fazyrv_ram_sp.sv │ │ │ └── wb_ram.sv │ │ ├── fazyrv.py │ │ └── lint │ │ │ └── verilator │ ├── gcd │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── gcd.py │ │ └── src │ │ │ ├── README.md │ │ │ └── gcd.v │ ├── heartbeat │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── heartbeat.py │ │ └── src │ │ │ └── heartbeat.v │ ├── ibex │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── ibex.py │ ├── jpeg │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── jpeg.py │ │ ├── lint │ │ │ └── verilator │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dct.v │ │ │ ├── dct_mac.v │ │ │ ├── dctu.v │ │ │ ├── dctub.v │ │ │ ├── div_su.v │ │ │ ├── div_uu.v │ │ │ ├── fdct.v │ │ │ ├── include │ │ │ └── dct_cos_table.v │ │ │ ├── jpeg_encoder.v │ │ │ ├── jpeg_qnr.v │ │ │ ├── jpeg_rle.v │ │ │ ├── jpeg_rle1.v │ │ │ ├── jpeg_rzs.v │ │ │ └── zigzag.v │ ├── mock_alu │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── generate_resources.sh │ │ ├── mock_alu.py │ │ └── src │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ └── build.properties │ │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── mac_brentkung_none.v │ │ │ │ ├── mult_brentkung_none.v │ │ │ │ ├── mult_hancarlson_none.v │ │ │ │ ├── mult_inferred_none.v │ │ │ │ ├── mult_koggestone_none.v │ │ │ │ └── mult_ripple_none.v │ │ │ └── scala │ │ │ │ └── MockAlu.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── MockAluTests.scala │ ├── openmsp430 │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── openmsp430.py │ ├── picorv32 │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── picorv32.py │ ├── qerv │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── qerv.py │ ├── riscv32i │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── lint │ │ │ └── verilator │ │ ├── riscv32i.py │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adder.v │ │ │ ├── alu.v │ │ │ ├── aludec.v │ │ │ ├── controller.v │ │ │ ├── datapath.v │ │ │ ├── dmem.v │ │ │ ├── flopenr.v │ │ │ ├── flopens.v │ │ │ ├── flopr.v │ │ │ ├── magcompare2b.v │ │ │ ├── magcompare2c.v │ │ │ ├── magcompare32.v │ │ │ ├── maindec.v │ │ │ ├── mux2.v │ │ │ ├── mux3.v │ │ │ ├── mux4.v │ │ │ ├── mux5.v │ │ │ ├── mux8.v │ │ │ ├── regfile.v │ │ │ ├── riscv.v │ │ │ ├── rom.v │ │ │ ├── shifter.v │ │ │ ├── signext.v │ │ │ └── top.v │ ├── serv │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ └── serv.py │ ├── spi │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── spi.py │ │ └── src │ │ │ └── spi.v │ ├── swerv │ │ ├── config │ │ │ ├── common_defines.vh │ │ │ └── pic_map_auto.h │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── lint │ │ │ └── verilator │ │ └── swerv.py │ ├── tiny_rocket │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── extra │ │ │ └── lambda.v │ │ ├── src │ │ │ ├── AsyncResetReg.v │ │ │ ├── ClockDivider2.v │ │ │ ├── ClockDivider3.v │ │ │ ├── LICENSE.Berkeley │ │ │ ├── LICENSE.SiFive │ │ │ ├── LICENSE.jtag │ │ │ ├── README.md │ │ │ ├── freechips.rocketchip.system.TinyConfig.v │ │ │ └── plusarg_reader.v │ │ └── tiny_rocket.py │ ├── uart │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── lint │ │ │ └── verilator │ │ ├── src │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── uart.v │ │ │ ├── uart_rx.v │ │ │ └── uart_tx.v │ │ └── uart.py │ ├── wally │ │ ├── constraints │ │ │ ├── asap7sc7p5t_rvt.sdc │ │ │ ├── gf180mcu_fd_sc_mcu7t5v0.sdc │ │ │ ├── gf180mcu_fd_sc_mcu9t5v0.sdc │ │ │ ├── nangate45.sdc │ │ │ ├── sg13g2_stdcell.sdc │ │ │ └── sky130hd.sdc │ │ ├── extra │ │ │ ├── config │ │ │ │ └── config.vh │ │ │ ├── lambda.v │ │ │ └── wallypipelinedcorewrapper.sv │ │ └── wally.py │ └── zerosoc │ │ ├── __init__.py │ │ ├── run_flat.py │ │ └── run_hierarchy.py ├── gallery.py ├── rules.py └── targets │ ├── README.md │ ├── asap7 │ └── __init__.py │ ├── freepdk45 │ └── __init__.py │ ├── gf180 │ └── __init__.py │ ├── ihp130 │ └── __init__.py │ ├── linting.py │ └── skywater130 │ └── __init__.py ├── scripts ├── convert_sdc.py ├── generate_image_cache.py └── report_configs.py └── tests ├── conftest.py ├── test_app.py ├── test_checklist.py ├── test_designs.py ├── test_gallery.py └── test_rules.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/bin/generate_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/bin/generate_cache.py -------------------------------------------------------------------------------- /.github/workflows/config/designs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/config/designs.json -------------------------------------------------------------------------------- /.github/workflows/designs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/designs.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/general_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/general_ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/montage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/montage.yml -------------------------------------------------------------------------------- /.github/workflows/run-designs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/run-designs.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | api/ 2 | _build/ 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | dl.field-list .colon { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/designs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/docs/designs.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/scgallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/docs/scgallery.rst -------------------------------------------------------------------------------- /images/black_parrot_job0_asap7_asap7sc7p5t_rvt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/black_parrot_job0_asap7_asap7sc7p5t_rvt.png -------------------------------------------------------------------------------- /images/black_parrot_job0_freepdk45_nangate45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/black_parrot_job0_freepdk45_nangate45.png -------------------------------------------------------------------------------- /images/cva6_job0_asap7_asap7sc7p5t_rvt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/cva6_job0_asap7_asap7sc7p5t_rvt.png -------------------------------------------------------------------------------- /images/cva6_job0_freepdk45_nangate45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/cva6_job0_freepdk45_nangate45.png -------------------------------------------------------------------------------- /images/montage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/montage.jpg -------------------------------------------------------------------------------- /images/swerv_job0_asap7_asap7sc7p5t_rvt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/swerv_job0_asap7_asap7sc7p5t_rvt.png -------------------------------------------------------------------------------- /images/wally_job0_asap7_asap7sc7p5t_rvt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/images/wally_job0_asap7_asap7sc7p5t_rvt.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scgallery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/__init__.py -------------------------------------------------------------------------------- /scgallery/apps/sc_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/apps/sc_gallery.py -------------------------------------------------------------------------------- /scgallery/checklists/asicflow_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/checklists/asicflow_rules.py -------------------------------------------------------------------------------- /scgallery/checklists/asicflow_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/checklists/asicflow_template.json -------------------------------------------------------------------------------- /scgallery/design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/design.py -------------------------------------------------------------------------------- /scgallery/designs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/__init__.py -------------------------------------------------------------------------------- /scgallery/designs/aes/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/aes.py -------------------------------------------------------------------------------- /scgallery/designs/aes/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/aes/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/aes/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/aes/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/aes/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/aes/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/aes/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/LICENSE -------------------------------------------------------------------------------- /scgallery/designs/aes/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/aes/src/aes_cipher_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/aes_cipher_top.v -------------------------------------------------------------------------------- /scgallery/designs/aes/src/aes_inv_cipher_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/aes_inv_cipher_top.v -------------------------------------------------------------------------------- /scgallery/designs/aes/src/aes_inv_sbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/aes_inv_sbox.v -------------------------------------------------------------------------------- /scgallery/designs/aes/src/aes_key_expand_128.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/aes_key_expand_128.v -------------------------------------------------------------------------------- /scgallery/designs/aes/src/aes_rcon.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/aes_rcon.v -------------------------------------------------------------------------------- /scgallery/designs/aes/src/aes_sbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/aes/src/aes_sbox.v -------------------------------------------------------------------------------- /scgallery/designs/aes/src/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/black_parrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/black_parrot.py -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/extra/lambda.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/extra/lambda.v -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/src/LICENSE -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/black_parrot/src/pickled.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/black_parrot/src/pickled.v -------------------------------------------------------------------------------- /scgallery/designs/blinky/blinky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/blinky.py -------------------------------------------------------------------------------- /scgallery/designs/blinky/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/blinky/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/blinky/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/blinky/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/blinky/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/blinky/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/blinky/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/__init__.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/datavault/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/datavault/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/datavault/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/datavault/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/datavault/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/datavault/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/datavault/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/datavault/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/datavault/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/datavault/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/datavault/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/datavault/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/keyvault/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/keyvault/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/keyvault/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/keyvault/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/keyvault/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/keyvault/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/keyvault/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/keyvault/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/keyvault/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/keyvault/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/keyvault/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/keyvault/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/sha512/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/sha512/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/sha512/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/sha512/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/sha512/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/sha512/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/sha512/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/sha512/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/sha512/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/sha512/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/constraints/sha512/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/constraints/sha512/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/caliptra/datavault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/datavault.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/keyvault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/keyvault.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/sha512.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/__init__.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/datavault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/datavault.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/keyvault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/keyvault.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/libs.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/pcrvault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/pcrvault.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/sha512.py -------------------------------------------------------------------------------- /scgallery/designs/caliptra/src/top_defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/caliptra/src/top_defines.py -------------------------------------------------------------------------------- /scgallery/designs/cva6/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/cva6/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/cva6/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/cva6/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/cva6/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/cva6/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/cva6/cva6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/cva6.py -------------------------------------------------------------------------------- /scgallery/designs/cva6/extra/hpdcache_sram_1rw.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/extra/hpdcache_sram_1rw.sv -------------------------------------------------------------------------------- /scgallery/designs/cva6/extra/hpdcache_sram_wbyteenable_1rw.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/extra/hpdcache_sram_wbyteenable_1rw.sv -------------------------------------------------------------------------------- /scgallery/designs/cva6/extra/sram_cache.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/cva6/extra/sram_cache.sv -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/darkriscv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/darkriscv.py -------------------------------------------------------------------------------- /scgallery/designs/darkriscv/extra/darkram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/darkriscv/extra/darkram.v -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/dynamic_node/dynamic_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/dynamic_node/dynamic_node.py -------------------------------------------------------------------------------- /scgallery/designs/ethmac/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/ethmac/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/ethmac/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/ethmac/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/ethmac/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/ethmac/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/ethmac/ethmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/ethmac.py -------------------------------------------------------------------------------- /scgallery/designs/ethmac/extra/lambda.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/extra/lambda.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/LICENSE -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_clockgen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_clockgen.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_cop.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_cop.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_crc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_crc.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_fifo.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_maccontrol.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_maccontrol.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_macstatus.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_macstatus.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_miim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_miim.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_outputcontrol.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_outputcontrol.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_random.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_random.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_receivecontrol.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_receivecontrol.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_register.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_register.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_registers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_registers.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_rxaddrcheck.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_rxaddrcheck.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_rxcounters.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_rxcounters.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_rxethmac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_rxethmac.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_rxstatem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_rxstatem.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_shiftreg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_shiftreg.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_spram_256x32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_spram_256x32.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_top.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_transmitcontrol.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_transmitcontrol.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_txcounters.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_txcounters.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_txethmac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_txethmac.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_txstatem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_txstatem.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/eth_wishbone.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/eth_wishbone.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/ethmac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/ethmac.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/ethmac_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/ethmac_defines.v -------------------------------------------------------------------------------- /scgallery/designs/ethmac/src/timescale.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ethmac/src/timescale.v -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/extra/fazyrv_ram_sp.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/extra/fazyrv_ram_sp.sv -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/extra/wb_ram.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/extra/wb_ram.sv -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/fazyrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/fazyrv.py -------------------------------------------------------------------------------- /scgallery/designs/fazyrv/lint/verilator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/fazyrv/lint/verilator -------------------------------------------------------------------------------- /scgallery/designs/gcd/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/gcd/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/gcd/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/gcd/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/gcd/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/gcd/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/gcd/gcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/gcd.py -------------------------------------------------------------------------------- /scgallery/designs/gcd/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/gcd/src/gcd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/gcd/src/gcd.v -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/heartbeat.py -------------------------------------------------------------------------------- /scgallery/designs/heartbeat/src/heartbeat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/heartbeat/src/heartbeat.v -------------------------------------------------------------------------------- /scgallery/designs/ibex/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/ibex/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/ibex/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/ibex/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/ibex/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/ibex/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/ibex/ibex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/ibex/ibex.py -------------------------------------------------------------------------------- /scgallery/designs/jpeg/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/jpeg/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/jpeg/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/jpeg/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/jpeg/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/jpeg/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/jpeg/jpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/jpeg.py -------------------------------------------------------------------------------- /scgallery/designs/jpeg/lint/verilator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/lint/verilator -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/LICENSE -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/dct.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/dct.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/dct_mac.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/dct_mac.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/dctu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/dctu.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/dctub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/dctub.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/div_su.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/div_su.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/div_uu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/div_uu.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/fdct.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/fdct.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/include/dct_cos_table.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/include/dct_cos_table.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/jpeg_encoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/jpeg_encoder.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/jpeg_qnr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/jpeg_qnr.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/jpeg_rle.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/jpeg_rle.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/jpeg_rle1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/jpeg_rle1.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/jpeg_rzs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/jpeg_rzs.v -------------------------------------------------------------------------------- /scgallery/designs/jpeg/src/zigzag.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/jpeg/src/zigzag.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/generate_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/generate_resources.sh -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/mock_alu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/mock_alu.py -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/build.sbt -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.2 2 | -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/resources/mac_brentkung_none.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/resources/mac_brentkung_none.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/resources/mult_brentkung_none.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/resources/mult_brentkung_none.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/resources/mult_hancarlson_none.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/resources/mult_hancarlson_none.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/resources/mult_inferred_none.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/resources/mult_inferred_none.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/resources/mult_koggestone_none.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/resources/mult_koggestone_none.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/resources/mult_ripple_none.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/resources/mult_ripple_none.v -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/main/scala/MockAlu.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/main/scala/MockAlu.scala -------------------------------------------------------------------------------- /scgallery/designs/mock_alu/src/src/test/scala/MockAluTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/mock_alu/src/src/test/scala/MockAluTests.scala -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/openmsp430/openmsp430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/openmsp430/openmsp430.py -------------------------------------------------------------------------------- /scgallery/designs/picorv32/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/picorv32/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/picorv32/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/picorv32/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/picorv32/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/picorv32/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/picorv32/picorv32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/picorv32/picorv32.py -------------------------------------------------------------------------------- /scgallery/designs/qerv/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/qerv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/qerv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/qerv/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/qerv/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/qerv/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/qerv/qerv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/qerv/qerv.py -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/lint/verilator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/lint/verilator -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/riscv32i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/riscv32i.py -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/LICENSE -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/adder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/adder.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/alu.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/aludec.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/aludec.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/controller.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/datapath.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/datapath.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/dmem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/dmem.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/flopenr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/flopenr.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/flopens.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/flopens.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/flopr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/flopr.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/magcompare2b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/magcompare2b.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/magcompare2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/magcompare2c.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/magcompare32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/magcompare32.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/maindec.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/maindec.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/mux2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/mux2.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/mux3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/mux3.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/mux4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/mux4.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/mux5.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/mux5.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/mux8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/mux8.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/regfile.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/regfile.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/riscv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/riscv.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/rom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/rom.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/shifter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/shifter.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/signext.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/signext.v -------------------------------------------------------------------------------- /scgallery/designs/riscv32i/src/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/riscv32i/src/top.v -------------------------------------------------------------------------------- /scgallery/designs/serv/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/serv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/serv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/serv/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/serv/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/serv/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/serv/serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/serv/serv.py -------------------------------------------------------------------------------- /scgallery/designs/spi/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/spi/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/spi/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/spi/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/spi/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/spi/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/spi/spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/spi.py -------------------------------------------------------------------------------- /scgallery/designs/spi/src/spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/spi/src/spi.v -------------------------------------------------------------------------------- /scgallery/designs/swerv/config/common_defines.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/config/common_defines.vh -------------------------------------------------------------------------------- /scgallery/designs/swerv/config/pic_map_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/config/pic_map_auto.h -------------------------------------------------------------------------------- /scgallery/designs/swerv/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/swerv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/swerv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/swerv/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/swerv/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/swerv/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/swerv/lint/verilator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/lint/verilator -------------------------------------------------------------------------------- /scgallery/designs/swerv/swerv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/swerv/swerv.py -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/extra/lambda.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/extra/lambda.v -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/AsyncResetReg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/AsyncResetReg.v -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/ClockDivider2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/ClockDivider2.v -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/ClockDivider3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/ClockDivider3.v -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/LICENSE.Berkeley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/LICENSE.Berkeley -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/LICENSE.SiFive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/LICENSE.SiFive -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/LICENSE.jtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/LICENSE.jtag -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/freechips.rocketchip.system.TinyConfig.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/freechips.rocketchip.system.TinyConfig.v -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/src/plusarg_reader.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/src/plusarg_reader.v -------------------------------------------------------------------------------- /scgallery/designs/tiny_rocket/tiny_rocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/tiny_rocket/tiny_rocket.py -------------------------------------------------------------------------------- /scgallery/designs/uart/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/uart/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/uart/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/uart/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/uart/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/uart/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/uart/lint/verilator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/lint/verilator -------------------------------------------------------------------------------- /scgallery/designs/uart/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/src/LICENSE -------------------------------------------------------------------------------- /scgallery/designs/uart/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/src/README.md -------------------------------------------------------------------------------- /scgallery/designs/uart/src/uart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/src/uart.v -------------------------------------------------------------------------------- /scgallery/designs/uart/src/uart_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/src/uart_rx.v -------------------------------------------------------------------------------- /scgallery/designs/uart/src/uart_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/src/uart_tx.v -------------------------------------------------------------------------------- /scgallery/designs/uart/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/uart/uart.py -------------------------------------------------------------------------------- /scgallery/designs/wally/constraints/asap7sc7p5t_rvt.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/constraints/asap7sc7p5t_rvt.sdc -------------------------------------------------------------------------------- /scgallery/designs/wally/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/constraints/gf180mcu_fd_sc_mcu7t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/wally/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/constraints/gf180mcu_fd_sc_mcu9t5v0.sdc -------------------------------------------------------------------------------- /scgallery/designs/wally/constraints/nangate45.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/constraints/nangate45.sdc -------------------------------------------------------------------------------- /scgallery/designs/wally/constraints/sg13g2_stdcell.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/constraints/sg13g2_stdcell.sdc -------------------------------------------------------------------------------- /scgallery/designs/wally/constraints/sky130hd.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/constraints/sky130hd.sdc -------------------------------------------------------------------------------- /scgallery/designs/wally/extra/config/config.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/extra/config/config.vh -------------------------------------------------------------------------------- /scgallery/designs/wally/extra/lambda.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/extra/lambda.v -------------------------------------------------------------------------------- /scgallery/designs/wally/extra/wallypipelinedcorewrapper.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/extra/wallypipelinedcorewrapper.sv -------------------------------------------------------------------------------- /scgallery/designs/wally/wally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/wally/wally.py -------------------------------------------------------------------------------- /scgallery/designs/zerosoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/zerosoc/__init__.py -------------------------------------------------------------------------------- /scgallery/designs/zerosoc/run_flat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/zerosoc/run_flat.py -------------------------------------------------------------------------------- /scgallery/designs/zerosoc/run_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/designs/zerosoc/run_hierarchy.py -------------------------------------------------------------------------------- /scgallery/gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/gallery.py -------------------------------------------------------------------------------- /scgallery/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/rules.py -------------------------------------------------------------------------------- /scgallery/targets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/README.md -------------------------------------------------------------------------------- /scgallery/targets/asap7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/asap7/__init__.py -------------------------------------------------------------------------------- /scgallery/targets/freepdk45/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/freepdk45/__init__.py -------------------------------------------------------------------------------- /scgallery/targets/gf180/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/gf180/__init__.py -------------------------------------------------------------------------------- /scgallery/targets/ihp130/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/ihp130/__init__.py -------------------------------------------------------------------------------- /scgallery/targets/linting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/linting.py -------------------------------------------------------------------------------- /scgallery/targets/skywater130/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scgallery/targets/skywater130/__init__.py -------------------------------------------------------------------------------- /scripts/convert_sdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scripts/convert_sdc.py -------------------------------------------------------------------------------- /scripts/generate_image_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scripts/generate_image_cache.py -------------------------------------------------------------------------------- /scripts/report_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/scripts/report_configs.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/tests/test_checklist.py -------------------------------------------------------------------------------- /tests/test_designs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/tests/test_designs.py -------------------------------------------------------------------------------- /tests/test_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/tests/test_gallery.py -------------------------------------------------------------------------------- /tests/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconcompiler/scgallery/HEAD/tests/test_rules.py --------------------------------------------------------------------------------