Skip to content

Commit

Permalink
Fix NF assertion for SKY130 MOS layout (#50)
Browse files Browse the repository at this point in the history
* Add option to merge gate contacts in SKY130

* fix TODO

* Fix NF assertion for SKY130 MOS layout
  • Loading branch information
rohanku authored Oct 16, 2024
1 parent ceb9a51 commit c9420cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdks/sky130_common_pdk/src/mos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ impl Sky130Pdk {
match params.contact_strategy {
GateContactStrategy::SingleSide => {
assert!(
nf <= 2,
"can only contact nf=2 transistors on a single side"
nf <= 3,
"can only contact nf=3 transistors on a single side"
);
let line = gate_bbox.height();
let space = POLY_SPACE;
Expand Down

0 comments on commit c9420cc

Please sign in to comment.