├── 2020 ├── Lab.pdf ├── README.md ├── apr │ ├── CHIP.sdc │ ├── Lab1_APR.pdf │ └── set_ccopt_property.tcl ├── design │ ├── CoeffCollect.sv │ ├── Downsample.sv │ ├── Helper.sv │ ├── Rgb888ToYuv422.sv │ ├── RgbToYuv.sv │ └── RgbToYuv_TODO.sv ├── figure │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── sim │ ├── CoeffCollect_test.py │ ├── CoeffCollect_test.sv │ ├── Downsample_test.py │ ├── Downsample_test.sv │ ├── Makefile │ ├── MyModel.py │ ├── Rgb888ToYuv422_test.py │ ├── Rgb888ToYuv422_test.sv │ ├── RgbToYuv_test.py │ └── RgbToYuv_test.sv └── syn │ ├── .synopsys_dc.setup │ ├── Rgb888ToYuv422.sdc │ └── run_sv.tcl ├── 2021 ├── B_ICC2021_prelimily_grad_cell-based.pdf ├── Nicotb Tutorial.pdf ├── README.md ├── VLSI Lab.pdf ├── design │ ├── Geofence.v │ ├── pic1.png │ ├── pic2.png │ ├── pic3.png │ ├── pic4.png │ └── ref │ │ ├── DW_sqrt.v │ │ ├── DW_sqrt_function.inc │ │ ├── Geofence_ans.v │ │ └── tb.sv ├── grad.data ├── sim │ ├── Geofence_test.py │ ├── Geofence_test.sv │ ├── Makefile │ └── __pycache__ │ │ └── Geofence_test.cpython-36.pyc └── syn │ ├── .synopsys_dc.setup │ ├── Geofence.sdc │ ├── dc_syn.tcl │ └── ref │ ├── Geofence_syn.sdf │ └── Geofence_syn.v ├── 2023 ├── B_ICC2023_prelimily_grad_cell-based.pdf ├── LASER.sdc ├── dc_syn.tcl ├── img1.pattern ├── img2.pattern ├── img3.pattern ├── img4.pattern ├── img5.pattern ├── img6.pattern └── tb.sv ├── 2025 ├── advanced │ ├── B_ICC2023_prelimily_grad_cell-based.pdf │ ├── LASER.sdc │ ├── dc_syn.tcl │ ├── img1.pattern │ ├── img2.pattern │ ├── img3.pattern │ ├── img4.pattern │ ├── img5.pattern │ ├── img6.pattern │ └── tb.sv └── basic │ ├── 2025_practice.tar │ └── 2025_rtl_basic_practice.pdf └── README.md /2020/Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/Lab.pdf -------------------------------------------------------------------------------- /2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/README.md -------------------------------------------------------------------------------- /2020/apr/CHIP.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/apr/CHIP.sdc -------------------------------------------------------------------------------- /2020/apr/Lab1_APR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/apr/Lab1_APR.pdf -------------------------------------------------------------------------------- /2020/apr/set_ccopt_property.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/apr/set_ccopt_property.tcl -------------------------------------------------------------------------------- /2020/design/CoeffCollect.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/design/CoeffCollect.sv -------------------------------------------------------------------------------- /2020/design/Downsample.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/design/Downsample.sv -------------------------------------------------------------------------------- /2020/design/Helper.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/design/Helper.sv -------------------------------------------------------------------------------- /2020/design/Rgb888ToYuv422.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/design/Rgb888ToYuv422.sv -------------------------------------------------------------------------------- /2020/design/RgbToYuv.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/design/RgbToYuv.sv -------------------------------------------------------------------------------- /2020/design/RgbToYuv_TODO.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/design/RgbToYuv_TODO.sv -------------------------------------------------------------------------------- /2020/figure/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/figure/1.png -------------------------------------------------------------------------------- /2020/figure/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/figure/2.png -------------------------------------------------------------------------------- /2020/figure/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/figure/3.png -------------------------------------------------------------------------------- /2020/figure/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/figure/4.png -------------------------------------------------------------------------------- /2020/figure/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/figure/5.png -------------------------------------------------------------------------------- /2020/figure/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/figure/6.png -------------------------------------------------------------------------------- /2020/sim/CoeffCollect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/CoeffCollect_test.py -------------------------------------------------------------------------------- /2020/sim/CoeffCollect_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/CoeffCollect_test.sv -------------------------------------------------------------------------------- /2020/sim/Downsample_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/Downsample_test.py -------------------------------------------------------------------------------- /2020/sim/Downsample_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/Downsample_test.sv -------------------------------------------------------------------------------- /2020/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/Makefile -------------------------------------------------------------------------------- /2020/sim/MyModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/MyModel.py -------------------------------------------------------------------------------- /2020/sim/Rgb888ToYuv422_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/Rgb888ToYuv422_test.py -------------------------------------------------------------------------------- /2020/sim/Rgb888ToYuv422_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/Rgb888ToYuv422_test.sv -------------------------------------------------------------------------------- /2020/sim/RgbToYuv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/RgbToYuv_test.py -------------------------------------------------------------------------------- /2020/sim/RgbToYuv_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/sim/RgbToYuv_test.sv -------------------------------------------------------------------------------- /2020/syn/.synopsys_dc.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/syn/.synopsys_dc.setup -------------------------------------------------------------------------------- /2020/syn/Rgb888ToYuv422.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/syn/Rgb888ToYuv422.sdc -------------------------------------------------------------------------------- /2020/syn/run_sv.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2020/syn/run_sv.tcl -------------------------------------------------------------------------------- /2021/B_ICC2021_prelimily_grad_cell-based.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/B_ICC2021_prelimily_grad_cell-based.pdf -------------------------------------------------------------------------------- /2021/Nicotb Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/Nicotb Tutorial.pdf -------------------------------------------------------------------------------- /2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/README.md -------------------------------------------------------------------------------- /2021/VLSI Lab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/VLSI Lab.pdf -------------------------------------------------------------------------------- /2021/design/Geofence.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/Geofence.v -------------------------------------------------------------------------------- /2021/design/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/pic1.png -------------------------------------------------------------------------------- /2021/design/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/pic2.png -------------------------------------------------------------------------------- /2021/design/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/pic3.png -------------------------------------------------------------------------------- /2021/design/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/pic4.png -------------------------------------------------------------------------------- /2021/design/ref/DW_sqrt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/ref/DW_sqrt.v -------------------------------------------------------------------------------- /2021/design/ref/DW_sqrt_function.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/ref/DW_sqrt_function.inc -------------------------------------------------------------------------------- /2021/design/ref/Geofence_ans.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/ref/Geofence_ans.v -------------------------------------------------------------------------------- /2021/design/ref/tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/design/ref/tb.sv -------------------------------------------------------------------------------- /2021/grad.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/grad.data -------------------------------------------------------------------------------- /2021/sim/Geofence_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/sim/Geofence_test.py -------------------------------------------------------------------------------- /2021/sim/Geofence_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/sim/Geofence_test.sv -------------------------------------------------------------------------------- /2021/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/sim/Makefile -------------------------------------------------------------------------------- /2021/sim/__pycache__/Geofence_test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/sim/__pycache__/Geofence_test.cpython-36.pyc -------------------------------------------------------------------------------- /2021/syn/.synopsys_dc.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/syn/.synopsys_dc.setup -------------------------------------------------------------------------------- /2021/syn/Geofence.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/syn/Geofence.sdc -------------------------------------------------------------------------------- /2021/syn/dc_syn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/syn/dc_syn.tcl -------------------------------------------------------------------------------- /2021/syn/ref/Geofence_syn.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/syn/ref/Geofence_syn.sdf -------------------------------------------------------------------------------- /2021/syn/ref/Geofence_syn.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2021/syn/ref/Geofence_syn.v -------------------------------------------------------------------------------- /2023/B_ICC2023_prelimily_grad_cell-based.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/B_ICC2023_prelimily_grad_cell-based.pdf -------------------------------------------------------------------------------- /2023/LASER.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/LASER.sdc -------------------------------------------------------------------------------- /2023/dc_syn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/dc_syn.tcl -------------------------------------------------------------------------------- /2023/img1.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/img1.pattern -------------------------------------------------------------------------------- /2023/img2.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/img2.pattern -------------------------------------------------------------------------------- /2023/img3.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/img3.pattern -------------------------------------------------------------------------------- /2023/img4.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/img4.pattern -------------------------------------------------------------------------------- /2023/img5.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/img5.pattern -------------------------------------------------------------------------------- /2023/img6.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/img6.pattern -------------------------------------------------------------------------------- /2023/tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2023/tb.sv -------------------------------------------------------------------------------- /2025/advanced/B_ICC2023_prelimily_grad_cell-based.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/B_ICC2023_prelimily_grad_cell-based.pdf -------------------------------------------------------------------------------- /2025/advanced/LASER.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/LASER.sdc -------------------------------------------------------------------------------- /2025/advanced/dc_syn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/dc_syn.tcl -------------------------------------------------------------------------------- /2025/advanced/img1.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/img1.pattern -------------------------------------------------------------------------------- /2025/advanced/img2.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/img2.pattern -------------------------------------------------------------------------------- /2025/advanced/img3.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/img3.pattern -------------------------------------------------------------------------------- /2025/advanced/img4.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/img4.pattern -------------------------------------------------------------------------------- /2025/advanced/img5.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/img5.pattern -------------------------------------------------------------------------------- /2025/advanced/img6.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/img6.pattern -------------------------------------------------------------------------------- /2025/advanced/tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/advanced/tb.sv -------------------------------------------------------------------------------- /2025/basic/2025_practice.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/basic/2025_practice.tar -------------------------------------------------------------------------------- /2025/basic/2025_rtl_basic_practice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaic/VLSI_Lab1/HEAD/2025/basic/2025_rtl_basic_practice.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Crash Course - VLSI Lab --------------------------------------------------------------------------------