Skip to content

Commit

Permalink
fix: increased power transistor placement gap
Browse files Browse the repository at this point in the history
  • Loading branch information
harshkhandeparkar committed May 6, 2024
1 parent 3a78718 commit 067afee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ proc place_pt_unit {instances_list place_limit} {

if {$orient == "R0" && $x_R1<$place_limit} {
place_cell -inst_name [lindex $line 0] -orient R0 -origin [list $x_R1 $y_R1] -status PLACED
set x_R1 [expr $x_R1 + 2.40]
set x_R1 [expr $x_R1 + 4.40]
} elseif { $orient == "R0" && $x_R2<$place_limit} {
place_cell -inst_name [lindex $line 0] -orient R0 -origin [list $x_R2 $y_R2] -status PLACED
set x_R2 [expr $x_R2 + 2.40]
set x_R2 [expr $x_R2 + 4.40]
} else {
place_cell -inst_name [lindex $line 0] -orient R0 -origin [list $x_R3 $y_R3] -status PLACED
set x_R3 [expr $x_R3 + 2.40]
set x_R3 [expr $x_R3 + 4.40]
}
}
close $ch
Expand Down

0 comments on commit 067afee

Please sign in to comment.