-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1889 from KLayout/issue-1877
Fixed issue #1877 (rounding introduces DRC error in LEF/DEF via)
- Loading branch information
Showing
7 changed files
with
104 additions
and
14 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
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,27 @@ | ||
VERSION 5.6 ; | ||
BUSBITCHARS "[]" ; | ||
DIVIDERCHAR "/" ; | ||
|
||
UNITS | ||
DATABASE MICRONS 1000 ; | ||
END UNITS | ||
MANUFACTURINGGRID 0.001 ; | ||
|
||
LAYER METAL_1 | ||
TYPE ROUTING ; | ||
DIRECTION HORIZONTAL ; | ||
WIDTH 0.6 ; | ||
END METAL_1 | ||
|
||
LAYER VIA_1 | ||
TYPE CUT ; | ||
END VIA_1 | ||
|
||
LAYER METAL_2 | ||
TYPE ROUTING ; | ||
DIRECTION VERTICAL ; | ||
WIDTH 0.6 ; | ||
END METAL_2 | ||
|
||
END LIBRARY | ||
|
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,4 @@ | ||
DIEAREA ALL 1 0 | ||
METAL_1 ALL 2 0 | ||
VIA_1 ALL 3 0 | ||
METAL_2 ALL 4 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,21 @@ | ||
VERSION 5.8 ; | ||
DIVIDERCHAR "/" ; | ||
BUSBITCHARS "[]" ; | ||
DESIGN dummy_design ; | ||
UNITS DISTANCE MICRONS 1000 ; | ||
|
||
DIEAREA ( 21500 7000 ) ( 26000 9000 ) ; | ||
|
||
VIAS 1 ; | ||
- via1_2_XXXX_XXX_X_X_XXX_XXX + VIARULE MYVIA1_ARRAY + CUTSIZE 246 246 + LAYERS METAL_1 VIA_1 METAL_2 + CUTSPACING 231 231 + ENCLOSURE 62 137 8 61 + ROWCOL 1 8 ; | ||
END VIAS | ||
|
||
|
||
SPECIALNETS 1 ; | ||
- VDD | ||
# ( PIN VDD ) ( * vdd ) | ||
+ USE POWER | ||
+ ROUTED METAL_1 0 + SHAPE STRIPE ( 23620 7840 ) via1_2_XXXX_XXX_X_X_XXX_XXX ; | ||
END SPECIALNETS | ||
|
||
END DESIGN |