This is the repository for the 2025 SSCS Chipathon RF_MOSbius team.
Xianglin Pu, Qizhe Wu, Jingde Hu, Andrew Chon
- Graduate Students of the Analog and RF Integrated Circuits Research Lab at Columbia University in the City of New York
This repository is made from the project template for the IIC-OSIC-TOOLS (https://github.com/iic-jku/IIC-OSIC-TOOLS) analog design workflow, preconfigured for the GlobalFoundries 180nm PDK (gf180mcuD).
The project follows specific naming conventions for organizing design libraries under /designs/libs/:
/designs/libs/
├── core_*/ # Design libraries (core functionality)
├── tb_*/ # Testbench libraries
└── ...
core_*: Design libraries containing your core circuit implementationstb_*: Testbench libraries containing simulation and verification setups
Within each library directory:
- Each cell should have its own subdirectory:
/designs/libs/library_name/cell_name/ - Files within a cell directory should be prefixed with the cell name (e.g.,
cell_name.sch,cell_name.sym) - Exception: Testbench directories (starting with
tb_) are exempt from the file naming prefix requirement
Use the provided sanity check script to validate your library structure:
cd designs/CI
./library_check.shThis script verifies:
- Proper directory hierarchy (no files at inappropriate levels)
- Correct file naming conventions for design libraries
- Exempts testbench libraries from strict naming requirements
This project is licensed under the MIT License. See the LICENSE file for details.