Skip to content

Commit 76a4dd5

Browse files
authored
Merge pull request #282 from The-OpenROAD-Project/fix_tapcell
[tapcell] Correct endcap cells on top and bottom of core area
2 parents 33aa701 + 505e82d commit 76a4dd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tapcell/src/tapcell.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ proc tapcell { args } {
821821

822822
if {$topbottom_chk == 1} {
823823
# top
824-
if {[string match "R0" $ori]} {
824+
if {[string match "MX" $ori]} {
825825
set master [$db findMaster $tap_nwintie_master]
826826
set tb2_master [$db findMaster $tap_nwin2_master]
827827
set tb3_master [$db findMaster $tap_nwin3_master]
@@ -832,7 +832,7 @@ proc tapcell { args } {
832832
}
833833
} elseif {$topbottom_chk == -1} {
834834
# bottom
835-
if {[string match "MX" $ori]} {
835+
if {[string match "R0" $ori]} {
836836
set master [$db findMaster $tap_nwintie_master]
837837
set tb2_master [$db findMaster $tap_nwin2_master]
838838
set tb3_master [$db findMaster $tap_nwin3_master]

0 commit comments

Comments
 (0)