├── Basic ├── doc │ └── readme.html ├── grain.xml └── libraries │ ├── ICPS2023_5_Basic.gds │ └── new_lib.gds ├── LICENSE ├── README.md ├── Samples └── Semicon2023 │ ├── NAND │ ├── floating_devices.asc │ ├── floating_devices.asy │ ├── lvs_work │ │ ├── nand_chip.net.txt │ │ ├── nand_sample.l2ndb │ │ ├── nand_sample_lvs_settings.rb │ │ ├── nand_sample_output.cir.txt │ │ └── nand_sample_reference.cir.txt │ ├── nand_chip.asc │ ├── nand_min.asc │ ├── nand_min.asy │ ├── nand_min_and_floating_devices.asc │ ├── nand_min_tb.asc │ ├── nand_min_tb.log │ ├── nand_min_tb.op.raw │ ├── nand_min_tb.plt │ ├── nand_min_tb.raw │ ├── nand_sample.GDS │ ├── nand_sample.yaml │ ├── nand_sample_ba.yaml │ └── nand_sample_output.cir │ └── base_contest2023.GDS └── Technology ├── doc ├── PDK_minimalFabSOICMOS.pdf └── PDK_reference_manual.pdf ├── grain.xml └── tech ├── AIST-SOI-CMOS.xs ├── ICPS2023_5.lyp ├── ICPS_SOI.lyp ├── OR_to_ICPS.txt ├── YSS-SOI-CMOS.xs ├── YSS-SOI-CMOS_Xsection.lyp ├── YSS_SOI_2023_1.lyp ├── drc ├── ICPS2023_5_to_SOI.lydrc ├── area_cut.lydrc └── drc.lydrc ├── lvs ├── lvs.lylvs └── lvs_fabrication.lylvs ├── macros ├── Backannotate device parasitics.lym ├── Documents │ ├── PDK reference manual.lym │ ├── PDK user manual.lym │ └── minimall Fab SOI CMOS PDK document.lym ├── SOI_TEG_to_Mineda2022_6.lym ├── XsectionUI.lym ├── autoplace.lym ├── change PCell defaults.lym ├── convert library cells.lym ├── force_ongrid.lym ├── get_reference.lym ├── metalize_bridges.lym ├── pcells_v0.1.lym └── revert_from_metals.lym ├── models ├── MF_CMOS20230922.txt ├── MF_CMOS20240109.txt ├── SOI_CMOS └── SOI_CMOS~ ├── symbols ├── EEschema │ ├── MinedaSymbols.lib │ └── MinedaSymbols.lib~ ├── LTspice │ └── MinedaLIB │ │ ├── CAP_MIN.asy │ │ ├── HR_POLY_MIN.asy │ │ ├── NDIO_MIN.asy │ │ ├── NMOS_ESD_MIN.asy │ │ ├── NMOS_MIN.asy │ │ ├── PDIO_MIN.asy │ │ ├── PMOS_ESD_MIN.asy │ │ ├── PMOS_MIN.asy │ │ ├── RES_MIN.asy │ │ └── R_POLY_MIN.asy └── Xschem │ ├── CAP_MIN.sym │ ├── HR_POLY_MIN.sym │ ├── HVNMOS_MIN.sym │ ├── HVPMOS_MIN.sym │ ├── NDIO_MIN.sym │ ├── NMOS_ESD_MIN.sym │ ├── NMOS_MIN.sym │ ├── PDIO_MIN.sym │ ├── PMOS_ESD_MIN.sym │ ├── PMOS_MIN.sym │ ├── RES_MIN.sym │ ├── R_POLY_MIN.sym │ ├── cap.sym │ ├── code.sym │ ├── code_shown.sym │ ├── gnd.sym │ ├── iopin.sym │ ├── ipin.sym │ ├── lab_pin.sym │ ├── netlist.sym │ ├── opin.sym │ ├── res.sym │ ├── vac.sym │ ├── voltage.sym │ ├── vpulse.sym │ └── vsin.sym └── tech.lyt /Basic/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Basic/doc/readme.html -------------------------------------------------------------------------------- /Basic/grain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Basic/grain.xml -------------------------------------------------------------------------------- /Basic/libraries/ICPS2023_5_Basic.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Basic/libraries/ICPS2023_5_Basic.gds -------------------------------------------------------------------------------- /Basic/libraries/new_lib.gds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Basic/libraries/new_lib.gds -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/floating_devices.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/floating_devices.asc -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/floating_devices.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/floating_devices.asy -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/lvs_work/nand_chip.net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/lvs_work/nand_chip.net.txt -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/lvs_work/nand_sample.l2ndb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/lvs_work/nand_sample.l2ndb -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/lvs_work/nand_sample_lvs_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/lvs_work/nand_sample_lvs_settings.rb -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/lvs_work/nand_sample_output.cir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/lvs_work/nand_sample_output.cir.txt -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/lvs_work/nand_sample_reference.cir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/lvs_work/nand_sample_reference.cir.txt -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_chip.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_chip.asc -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min.asc -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min.asy -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min_and_floating_devices.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min_and_floating_devices.asc -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min_tb.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min_tb.asc -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min_tb.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min_tb.log -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min_tb.op.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min_tb.op.raw -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min_tb.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min_tb.plt -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_min_tb.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_min_tb.raw -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_sample.GDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_sample.GDS -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_sample.yaml -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_sample_ba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_sample_ba.yaml -------------------------------------------------------------------------------- /Samples/Semicon2023/NAND/nand_sample_output.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/NAND/nand_sample_output.cir -------------------------------------------------------------------------------- /Samples/Semicon2023/base_contest2023.GDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Samples/Semicon2023/base_contest2023.GDS -------------------------------------------------------------------------------- /Technology/doc/PDK_minimalFabSOICMOS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/doc/PDK_minimalFabSOICMOS.pdf -------------------------------------------------------------------------------- /Technology/doc/PDK_reference_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/doc/PDK_reference_manual.pdf -------------------------------------------------------------------------------- /Technology/grain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/grain.xml -------------------------------------------------------------------------------- /Technology/tech/AIST-SOI-CMOS.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/AIST-SOI-CMOS.xs -------------------------------------------------------------------------------- /Technology/tech/ICPS2023_5.lyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/ICPS2023_5.lyp -------------------------------------------------------------------------------- /Technology/tech/ICPS_SOI.lyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/ICPS_SOI.lyp -------------------------------------------------------------------------------- /Technology/tech/OR_to_ICPS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/OR_to_ICPS.txt -------------------------------------------------------------------------------- /Technology/tech/YSS-SOI-CMOS.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/YSS-SOI-CMOS.xs -------------------------------------------------------------------------------- /Technology/tech/YSS-SOI-CMOS_Xsection.lyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/YSS-SOI-CMOS_Xsection.lyp -------------------------------------------------------------------------------- /Technology/tech/YSS_SOI_2023_1.lyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/YSS_SOI_2023_1.lyp -------------------------------------------------------------------------------- /Technology/tech/drc/ICPS2023_5_to_SOI.lydrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/drc/ICPS2023_5_to_SOI.lydrc -------------------------------------------------------------------------------- /Technology/tech/drc/area_cut.lydrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/drc/area_cut.lydrc -------------------------------------------------------------------------------- /Technology/tech/drc/drc.lydrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/drc/drc.lydrc -------------------------------------------------------------------------------- /Technology/tech/lvs/lvs.lylvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/lvs/lvs.lylvs -------------------------------------------------------------------------------- /Technology/tech/lvs/lvs_fabrication.lylvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/lvs/lvs_fabrication.lylvs -------------------------------------------------------------------------------- /Technology/tech/macros/Backannotate device parasitics.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/Backannotate device parasitics.lym -------------------------------------------------------------------------------- /Technology/tech/macros/Documents/PDK reference manual.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/Documents/PDK reference manual.lym -------------------------------------------------------------------------------- /Technology/tech/macros/Documents/PDK user manual.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/Documents/PDK user manual.lym -------------------------------------------------------------------------------- /Technology/tech/macros/Documents/minimall Fab SOI CMOS PDK document.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/Documents/minimall Fab SOI CMOS PDK document.lym -------------------------------------------------------------------------------- /Technology/tech/macros/SOI_TEG_to_Mineda2022_6.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/SOI_TEG_to_Mineda2022_6.lym -------------------------------------------------------------------------------- /Technology/tech/macros/XsectionUI.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/XsectionUI.lym -------------------------------------------------------------------------------- /Technology/tech/macros/autoplace.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/autoplace.lym -------------------------------------------------------------------------------- /Technology/tech/macros/change PCell defaults.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/change PCell defaults.lym -------------------------------------------------------------------------------- /Technology/tech/macros/convert library cells.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/convert library cells.lym -------------------------------------------------------------------------------- /Technology/tech/macros/force_ongrid.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/force_ongrid.lym -------------------------------------------------------------------------------- /Technology/tech/macros/get_reference.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/get_reference.lym -------------------------------------------------------------------------------- /Technology/tech/macros/metalize_bridges.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/metalize_bridges.lym -------------------------------------------------------------------------------- /Technology/tech/macros/pcells_v0.1.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/pcells_v0.1.lym -------------------------------------------------------------------------------- /Technology/tech/macros/revert_from_metals.lym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/macros/revert_from_metals.lym -------------------------------------------------------------------------------- /Technology/tech/models/MF_CMOS20230922.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/models/MF_CMOS20230922.txt -------------------------------------------------------------------------------- /Technology/tech/models/MF_CMOS20240109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/models/MF_CMOS20240109.txt -------------------------------------------------------------------------------- /Technology/tech/models/SOI_CMOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/models/SOI_CMOS -------------------------------------------------------------------------------- /Technology/tech/models/SOI_CMOS~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/models/SOI_CMOS~ -------------------------------------------------------------------------------- /Technology/tech/symbols/EEschema/MinedaSymbols.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/EEschema/MinedaSymbols.lib -------------------------------------------------------------------------------- /Technology/tech/symbols/EEschema/MinedaSymbols.lib~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/EEschema/MinedaSymbols.lib~ -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/CAP_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/CAP_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/HR_POLY_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/HR_POLY_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/NDIO_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/NDIO_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/NMOS_ESD_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/NMOS_ESD_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/NMOS_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/NMOS_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/PDIO_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/PDIO_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/PMOS_ESD_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/PMOS_ESD_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/PMOS_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/PMOS_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/RES_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/RES_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/LTspice/MinedaLIB/R_POLY_MIN.asy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/LTspice/MinedaLIB/R_POLY_MIN.asy -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/CAP_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/CAP_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/HR_POLY_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/HR_POLY_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/HVNMOS_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/HVNMOS_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/HVPMOS_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/HVPMOS_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/NDIO_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/NDIO_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/NMOS_ESD_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/NMOS_ESD_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/NMOS_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/NMOS_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/PDIO_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/PDIO_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/PMOS_ESD_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/PMOS_ESD_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/PMOS_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/PMOS_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/RES_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/RES_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/R_POLY_MIN.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/R_POLY_MIN.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/cap.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/cap.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/code.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/code.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/code_shown.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/code_shown.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/gnd.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/gnd.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/iopin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/iopin.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/ipin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/ipin.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/lab_pin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/lab_pin.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/netlist.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/netlist.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/opin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/opin.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/res.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/res.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/vac.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/vac.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/voltage.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/voltage.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/vpulse.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/vpulse.sym -------------------------------------------------------------------------------- /Technology/tech/symbols/Xschem/vsin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/symbols/Xschem/vsin.sym -------------------------------------------------------------------------------- /Technology/tech/tech.lyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineda-support/ICPS2023_5/HEAD/Technology/tech/tech.lyt --------------------------------------------------------------------------------