-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented a solution for issue #1528 (LEF WIDTHTABLE)
The WIDTHTABLE is evaluated for normal and WRONGDIRECTION. The first value is taken as min width and as default width.
- Loading branch information
Matthias Koefferlein
committed
Dec 2, 2023
1 parent
5b4473e
commit 1017026
Showing
6 changed files
with
115 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mx NET 10 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
VERSION 5.8 ; | ||
DIVIDERCHAR "/" ; | ||
BUSBITCHARS "[]" ; | ||
DESIGN block ; | ||
UNITS DISTANCE MICRONS 2000 ; | ||
DIEAREA ( 0 0 ) ( 3000 1000 ) ; | ||
NETS 1 ; | ||
- n1 + USE SIGNAL | ||
+ ROUTED mx ( 1000 520 ) ( 2500 * ) | ||
NEW mx ( 1000 520 ) ( * 880 ) | ||
; | ||
END NETS | ||
END DESIGN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
VERSION 5.8 ; | ||
|
||
BUSBITCHARS "[]" ; | ||
DIVIDERCHAR "/" ; | ||
|
||
UNITS | ||
DATABASE MICRONS 2000 ; | ||
END UNITS | ||
|
||
LAYER mx | ||
TYPE ROUTING ; | ||
WIDTH 0.04 ; | ||
DIRECTION HORIZONTAL ; | ||
PROPERTY LEF58_WIDTHTABLE " | ||
WIDTHTABLE 0.08 ; | ||
WIDTHTABLE 0.12 WRONGDIRECTION ; | ||
" ; | ||
END mx | ||
END LIBRARY |