Cadence ic5 techfile sample
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 |
; Technology File sample2003 ; Generated on 2007 ;******************************** ; CONTROLS ;******************************** controls( viewTypeUnits( ;( viewType userUnit dbuperuu ) ;( -------- -------- -------- ) ( maskLayout "micron" 2000 ) ( schematic "inch" 160 ) ( schematicSymbol "inch" 160 ) ( netlist "inch" 160 ) ( hierDesign "_def_" 2000 ) ) ;viewTypeUnits mfgGridResolution( ( 0.005000 ) ) ;mfgGridResolution ) ;controls ;******************************** ; LAYER DEFINITION ;******************************** layerDefinitions( techPurposes( ;( PurposeName Purpose# Abbreviation ) ;( ----------- -------- ------------ ) ;User-Defined Purposes: ( GeoShare 1 GeoShare ) ) ;techPurposes techLayers( ;( LayerName Layer# Abbreviation ) ;( --------- ------ ------------ ) ;User-Defined Layers: ( Oxide 1 OXIDE ) ( Nwell 2 NWELL ) ( Poly 3 POLY ) ( Nimp 4 NIMP ) ( Pimp 5 PIMP ) ( Cont 6 CONT ) ( Metal1 7 METAL1 ) ( Via1 8 VIA1 ) ( Metal2 9 METAL2 ) ( Via2 10 VIA2 ) ( Metal3 11 METAL3 ) ( Pwell 18 PWELL ) ) ;techLayers techLayerPurposePriorities( ;layers are ordered from lowest to highest priority ;( LayerName Purpose ) ;( --------- ------- ) ( Metal1 label ) ( Metal1 drawing4 ) ( Metal1 drawing ) ( Metal1 track ) ( Metal1 grid ) ( Metal1 blockage ) ( Metal1 pin ) ( Metal1 net ) ( Metal1 boundary ) ( Via1 label ) ( Via1 pin ) ( Via1 drawing4 ) ( Via1 drawing ) ( Via1 grid ) ( Via1 blockage ) ( Via1 net ) ( Via1 boundary ) ( Metal2 label ) ( Metal2 drawing4 ) ( Metal2 drawing ) ( Metal2 track ) ( Metal2 grid ) ( Metal2 blockage ) ( Metal2 pin ) ( Metal2 net ) ( Metal2 boundary ) ( Via2 pin ) ( Via2 label ) ( Via2 drawing4 ) ( Via2 drawing ) ( Via2 grid ) ( Via2 blockage ) ( Via2 net ) ( Via2 boundary ) ( Metal3 label ) ( Metal3 drawing4 ) ( Metal3 drawing ) ( Metal3 track ) ( Metal3 grid ) ( Metal3 blockage ) ( Metal3 pin ) ( Metal3 net ) ( Metal3 boundary ) ( Cont drawing ) ( Cont grid ) ( Cont blockage ) ( Cont net ) ( Cont boundary ) ( Poly label ) ( Poly drawing4 ) ( Poly drawing ) ( Poly pin ) ( Poly net ) ( Poly boundary ) ( Nwell drawing ) ( Nwell net ) ( Nwell boundary ) ( Pwell drawing ) ( Pwell net ) ( Pwell boundary ) ( Oxide drawing ) ( Oxide net ) ( Oxide boundary ) ( Nimp drawing ) ( Nimp boundary ) ( Pimp drawing ) ( Pimp boundary ) ( background drawing ) ( grid drawing ) ( grid drawing1 ) ( annotate drawing ) ( annotate drawing1 ) ( annotate drawing2 ) ( annotate drawing3 ) ( annotate drawing4 ) ( annotate drawing5 ) ( annotate drawing6 ) ( annotate drawing7 ) ( annotate drawing8 ) ( annotate drawing9 ) ( instance drawing ) ( instance label ) ( prBoundary drawing ) ( prBoundary boundary ) ( prBoundary label ) ( align drawing ) ( hardFence drawing ) ( softFence drawing ) ( text drawing ) ( text label ) ( text drawing1 ) ( text drawing2 ) ( border drawing ) ( device drawing ) ( device label ) ( device drawing1 ) ( device drawing2 ) ( device annotate ) ( wire drawing ) ( wire label ) ( wire flight ) ( pin label ) ( pin drawing ) ( pin annotate ) ( axis drawing ) ( edgeLayer drawing ) ( edgeLayer pin ) ( snap drawing ) ( stretch drawing ) ( y0 drawing ) ( y1 drawing ) ( y2 drawing ) ( y3 drawing ) ( y4 drawing ) ( y5 drawing ) ( y6 drawing ) ( y7 drawing ) ( y8 drawing ) ( y9 drawing ) ( hilite drawing ) ( hilite drawing1 ) ( hilite drawing2 ) ( hilite drawing3 ) ( hilite drawing4 ) ( hilite drawing5 ) ( hilite drawing6 ) ( hilite drawing7 ) ( hilite drawing8 ) ( hilite drawing9 ) ( select drawing ) ( drive drawing ) ( hiz drawing ) ( resist drawing ) ( spike drawing ) ( supply drawing ) ( unknown drawing ) ( unset drawing ) ( designFlow drawing ) ( designFlow drawing1 ) ( designFlow drawing2 ) ( designFlow drawing3 ) ( designFlow drawing4 ) ( designFlow drawing5 ) ( designFlow drawing6 ) ( designFlow drawing7 ) ( designFlow drawing8 ) ( designFlow drawing9 ) ( changedLayer tool0 ) ( changedLayer tool1 ) ( marker warning ) ( marker error ) ( Row drawing ) ( Row label ) ( Group drawing ) ( Group label ) ( Cannotoccupy drawing ) ( Cannotoccupy boundary ) ( Canplace drawing ) ( Unrouted drawing ) ( Unrouted drawing1 ) ( Unrouted drawing2 ) ( Unrouted drawing3 ) ( Unrouted drawing4 ) ( Unrouted drawing5 ) ( Unrouted drawing6 ) ( Unrouted drawing7 ) ( Unrouted drawing8 ) ( Unrouted drawing9 ) ) ;techLayerPurposePriorities techDisplays( ;( LayerName Purpose Packet Vis Sel Con2ChgLy DrgEnbl Valid ) ;( --------- ------- ------ --- --- --------- ------- ----- ) ( Metal1 label m1 t t t t nil ) ( Metal1 drawing4 m1 t t t t nil ) ( Metal1 drawing m1 t t t t t ) ( Metal1 track m1 nil nil t t nil ) ( Metal1 grid m1 t nil nil nil nil ) ( Metal1 blockage m1 t nil t t nil ) ( Metal1 pin m1Pin t t t t nil ) ( Metal1 net m1Net t t t t nil ) ( Metal1 boundary m1Bnd t t t t nil ) ( Via1 label v1 t t t t nil ) ( Via1 pin v1 t t t t nil ) ( Via1 drawing4 v1 t t t t nil ) ( Via1 drawing v1 t t t t t ) ( Via1 grid v1 t nil nil nil nil ) ( Via1 blockage v1 t nil t t nil ) ( Via1 net v1Net t t t t nil ) ( Via1 boundary v1Bnd t t t t nil ) ( Metal2 label m2 t t t t nil ) ( Metal2 drawing4 m2 t t t t nil ) ( Metal2 drawing m2 t t t t t ) ( Metal2 track m2 nil nil t t nil ) ( Metal2 grid m2 t nil nil nil nil ) ( Metal2 blockage m2 t nil t t nil ) ( Metal2 pin m2Pin t t t t nil ) ( Metal2 net m2Net t t t t nil ) ( Metal2 boundary m2Bnd t t t t nil ) ( Via2 pin v2 t t t t nil ) ( Via2 label v2 t t t t nil ) ( Via2 drawing4 v2 t t t t nil ) ( Via2 drawing v2 t t t t t ) ( Via2 grid v2 t nil nil nil nil ) ( Via2 blockage v2 t nil t t nil ) ( Via2 net v2Net t t t t nil ) ( Via2 boundary v2Bnd t t t t nil ) ( Metal3 label m3 t t t t nil ) ( Metal3 drawing4 m3 t t t t nil ) ( Metal3 drawing m3 t t t t t ) ( Metal3 track m3 nil nil t t nil ) ( Metal3 grid m3 t nil nil nil nil ) ( Metal3 blockage m3 t nil t t nil ) ( Metal3 pin m3Pin t t t t nil ) ( Metal3 net m3Net t t t t nil ) ( Metal3 boundary m3Bnd t t t t nil ) ( Cont drawing cw t t t t t ) ( Cont grid cw t nil nil nil nil ) ( Cont blockage cw t nil t t nil ) ( Cont net cwNet t t t t nil ) ( Cont boundary cwBnd t t t t nil ) ( Poly label poly1 t t t t nil ) ( Poly drawing4 poly1 t t t t nil ) ( Poly drawing poly1 t t t t t ) ( Poly pin poly1Pin t t t t nil ) ( Poly net poly1Net t t t t nil ) ( Poly boundary poly1Bnd t t t t nil ) ( Nwell drawing nwell t t t t t ) ( Nwell net nwellNet t t t t nil ) ( Nwell boundary nwellBnd t t t t nil ) ( Pwell drawing pwell t t t t t ) ( Pwell net pwellNet t t t t nil ) ( Pwell boundary pwellBnd t t t t nil ) ( Oxide drawing tox t t t t t ) ( Oxide net toxBnd t t t t nil ) ( Oxide boundary toxBnd t t t t nil ) ( Nimp drawing nplus t t t t t ) ( Nimp boundary nplusBnd t t t t nil ) ( Pimp drawing pplus t t t t t ) ( Pimp boundary pplusBnd t t t t nil ) ( background drawing background t nil t nil nil ) ( grid drawing grid t nil t nil nil ) ( grid drawing1 grid1 t nil t nil nil ) ( annotate drawing annotate t t t t nil ) ( annotate drawing1 annotate1 t t t t nil ) ( annotate drawing2 annotate2 t t t t nil ) ( annotate drawing3 annotate3 t t t t nil ) ( annotate drawing4 annotate4 t t t t nil ) ( annotate drawing5 annotate5 t t t t nil ) ( annotate drawing6 annotate6 t t t t nil ) ( annotate drawing7 annotate7 t t t t nil ) ( annotate drawing8 annotate8 t t t t nil ) ( annotate drawing9 annotate9 t t t t nil ) ( instance drawing instance t t t t nil ) ( instance label instanceLbl t t t t nil ) ( prBoundary drawing prBoundary t t t t t ) ( prBoundary boundary prBoundaryBnd t t t t nil ) ( prBoundary label prBoundaryLbl t t t t nil ) ( align drawing defaultPacket t t t t nil ) ( hardFence drawing hardFence t t t t nil ) ( softFence drawing softFence t t t t nil ) ( text drawing text t t t t t ) ( text label text t t t t t ) ( text drawing1 text1 t t t t nil ) ( text drawing2 text2 t t t t nil ) ( border drawing border t t t t nil ) ( device drawing device t t t t nil ) ( device label deviceLbl t t t t nil ) ( device drawing1 device1 t t t t nil ) ( device drawing2 device2 t t t t nil ) ( device annotate deviceAnt t t t t nil ) ( wire drawing wire t t t t nil ) ( wire label wireLbl t t t t nil ) ( wire flight wireFlt t t t t nil ) ( pin label pinLbl t t t t nil ) ( pin drawing pin t t t t nil ) ( pin annotate pinAnt t t t t nil ) ( axis drawing axis t nil t t nil ) ( edgeLayer drawing edgeLayer t t t t nil ) ( edgeLayer pin edgeLayerPin t t t t nil ) ( snap drawing snap t t t t nil ) ( stretch drawing stretch t t t t nil ) ( y0 drawing y0 t t t t nil ) ( y1 drawing y1 t t t t nil ) ( y2 drawing y2 t t t t nil ) ( y3 drawing y3 t t t t nil ) ( y4 drawing y4 t t t t nil ) ( y5 drawing y5 t t t t nil ) ( y6 drawing y6 t t t t nil ) ( y7 drawing y7 t t t t nil ) ( y8 drawing y8 t t t t nil ) ( y9 drawing y9 t t t t nil ) ( hilite drawing hilite t t t t nil ) ( hilite drawing1 hilite1 t t t t nil ) ( hilite drawing2 hilite2 t t t t nil ) ( hilite drawing3 hilite3 t t t t nil ) ( hilite drawing4 hilite4 t t t t nil ) ( hilite drawing5 hilite5 t t t t nil ) ( hilite drawing6 hilite6 t t t t nil ) ( hilite drawing7 hilite7 t t t t nil ) ( hilite drawing8 hilite8 t t t t nil ) ( hilite drawing9 hilite9 t t t t nil ) ( select drawing select t t t t nil ) ( drive drawing drive t t t t nil ) ( hiz drawing hiz t t t t nil ) ( resist drawing resist t t t t nil ) ( spike drawing spike t t t t nil ) ( supply drawing supply t t t t nil ) ( unknown drawing unknown t t t t nil ) ( unset drawing unset t t t t nil ) ( designFlow drawing designFlow t nil nil nil t ) ( designFlow drawing1 designFlow1 t nil nil nil t ) ( designFlow drawing2 designFlow2 t nil nil nil t ) ( designFlow drawing3 designFlow3 t nil nil nil t ) ( designFlow drawing4 designFlow4 t nil nil nil t ) ( designFlow drawing5 designFlow5 t nil nil nil t ) ( designFlow drawing6 designFlow6 t nil nil nil t ) ( designFlow drawing7 designFlow7 t nil nil nil t ) ( designFlow drawing8 designFlow8 t nil nil nil t ) ( designFlow drawing9 designFlow9 t nil nil nil t ) ( changedLayer tool0 changedLayerTl0 nil nil t nil nil ) ( changedLayer tool1 changedLayerTl1 nil nil t nil nil ) ( marker warning markerWarn t t t t nil ) ( marker error markerErr t t t t nil ) ( Row drawing prBoundaryLbl t t t t t ) ( Row label RowLbl t t t t nil ) ( Group drawing Group t t t t nil ) ( Group label GroupLbl t t t t nil ) ( Cannotoccupy drawing Cannotoccupy t t t t nil ) ( Cannotoccupy boundary CannotoccupyBnd t t t t nil ) ( Canplace drawing Canplace t t t t nil ) ( Unrouted drawing Unrouted t t t t nil ) ( Unrouted drawing1 Unrouted1 t t t t nil ) ( Unrouted drawing2 Unrouted2 t t t t nil ) ( Unrouted drawing3 Unrouted3 t t t t nil ) ( Unrouted drawing4 Unrouted4 t t t t nil ) ( Unrouted drawing5 Unrouted5 t t t t nil ) ( Unrouted drawing6 Unrouted6 t t t t nil ) ( Unrouted drawing7 Unrouted7 t t t t nil ) ( Unrouted drawing8 Unrouted8 t t t t nil ) ( Unrouted drawing9 Unrouted9 t t t t nil ) ) ;techDisplays techLayerProperties( ;( PropName Layer1 [ Layer2 ] PropValue ) ;( -------- ------ ---------- --------- ) ( sheetResistance Oxide 300.000000 ) ( sheetResistance Poly 7.500000 ) ( sheetResistance Nimp 300.000000 ) ( areaCapacitance Metal1 1.320000e-04 ) ( edgeCapacitance Metal1 0.000000 ) ( sheetResistance Metal1 0.101000 ) ( areaCapacitance Metal2 7.000000e-05 ) ( edgeCapacitance Metal2 0.000000 ) ( sheetResistance Metal2 0.101000 ) ( areaCapacitance Metal3 6.300000e-05 ) ( edgeCapacitance Metal3 0.000000 ) ( sheetResistance Metal3 0.101000 ) ) ;techLayerProperties techDerivedLayers( ;( DerivedLayerName # composition ) ;( ---------------- ------ ------------ ) ( noOverlapLayer1 10001 ( Poly 'and Oxide )) ) ;techDerivedLayers ) ;layerDefinitions ;******************************** ; LAYER RULES ;******************************** layerRules( functions( ;( layer function [maskNumber]) ;( ----- -------- ------------) ( Nwell "nwell" 1 ) ( Pwell "pwell" 2 ) ( Oxide "unknown" 3 ) ( Nimp "nplus" 4 ) ( Pimp "pplus" 5 ) ( Poly "poly" 6 ) ( Cont "cut" 7 ) ( Metal1 "metal" 8 ) ( Via1 "cut" 9 ) ( Metal2 "metal" 10 ) ( Via2 "cut" 11 ) ( Metal3 "metal" 12 ) ) ;functions routingDirections( ;( layer direction ) ;( ----- --------- ) ( Metal1 "horizontal" ) ( Metal2 "vertical" ) ( Metal3 "horizontal" ) ) ;routingDirections ) ;layerRules ;******************************** ; VIADEFS ;******************************** viaDefs( standardViaDefs( ;( viaDefName layer1 layer2 (cutLayer cutWidth cutHeight [resistancePerCut]) ; (cutRows cutCol (cutSpace)) ; (layer1Enc) (layer2Enc) (layer1Offset) (layer2Offset) (origOffset) ; [implant1 (implant1Enc) [implant2 (implant2Enc) [well/substrate]]]) ;( -------------------------------------------------------------------------- ) ( M1_M2 Metal1 Metal2 ("Via1" 0.2 0.2) (1 1 (0.3 0.3)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( M2_M3 Metal2 Metal3 ("Via2" 0.1 0.2) (1 1 (0.3 0.3)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( Via12Array Metal1 Metal2 ("Via1" 0.2 0.2) (1 1 (0.3 0.3)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( Via23Array Metal2 Metal3 ("Via2" 0.2 0.2) (1 1 (0.3 0.3)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( M3_M2 Metal2 Metal3 ("Via2" 0.2 0.2 6.4) (1 1 (0.5 0.5)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( M2_M1 Metal1 Metal2 ("Via1" 0.2 0.2 6.4) (1 1 (0.5 0.5)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( M1_PSUB Oxide Metal1 ("Cont" 0.2 0.2) (1 1 (0.3 0.3)) (0.2 0.2) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) Pimp (0.2 0.2) ) ( M1_PIMP Oxide Metal1 ("Cont" 0.2 0.2) (1 1 (0.3 0.3)) (0.2 0.2) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) Pimp (0.2 0.2) ) ( M1_NWELL Oxide Metal1 ("Cont" 0.2 0.2) (1 1 (0.3 0.3)) (0.2 0.2) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) Nimp (0.2 0.2) Nwell (0.6 0.6) ) ( M1_NIMP Oxide Metal1 ("Cont" 0.2 0.2) (1 1 (0.3 0.3)) (0.2 0.2) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) Nimp (0.2 0.2) ) ( M1_POLY1 Poly Metal1 ("Cont" 0.2 0.2) (1 1 (0.3 0.3)) (0.2 0.2) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ) ;standardViaDefs customViaDefs( ;( viaDefName libName cellName viewName layer1 layer2 resistancePerCut) ;( ---------- ------- -------- -------- ------ ------ ----------------) ( M3_M2_symbolic sample2003 M3_M2 symbolic Metal2 Metal3 0.0) ( M2_M1_symbolic sample2003 M2_M1 symbolic Metal1 Metal2 0.0) ( M2_M1_symbolic_via sample2003 M2_M1_symbolic via Metal1 Metal2 0.0) ( M3_M2_symbolic_via sample2003 M3_M2_symbolic via Metal2 Metal3 0.0) ( M2_M1_via sample2003 M2_M1 via Metal1 Metal2 6.4) ( M3_M2_via sample2003 M3_M2 via Metal2 Metal3 6.4) ) ;customViaDefs ) ;viaDefs ;******************************** ; CONSTRAINT GROUPS ;******************************** constraintGroups( ;( group [override] ) ;( ----- ---------- ) ( "default" nil memberConstraintGroups( ; listed in order of precedence ; ----------------------------- "LEFDefaultRouteSpec" ); memberConstraintGroups ) ;default ;( group [override] ) ;( ----- ---------- ) ( "virtuosoDefaultExtractorSetup" nil interconnect( ( validLayers (Oxide Pwell Nwell Poly Cont Metal3 Via2 Metal2 Via1 Metal1 ) ) ( errorLayer noOverlapLayer1 ) ) ;interconnect ) ;virtuosoDefaultExtractorSetup ;( group [override] ) ;( ----- ---------- ) ( "LEFDefaultRouteSpec" nil interconnect( ( validVias (M2_M1_symbolic_via M3_M2_symbolic_via M2_M1_via M3_M2_via ) ) ) ;interconnect spacings( ( minWidth "Metal1" 0.3 'soft ) ( minSpacing "Metal1" 0.3 'soft ) ( minDiagonalWidth "Metal1" 0.3 'soft ) ( minDiagonalSpacing "Metal1" 0.3 'soft ) ( minWireExtension "Metal1" 0.15 ) ( minWidth "Metal2" 0.3 'soft ) ( minSpacing "Metal2" 0.3 'soft ) ( minDiagonalWidth "Metal2" 0.3 'soft ) ( minDiagonalSpacing "Metal2" 0.3 'soft ) ( minWireExtension "Metal2" 0.15 ) ( minWidth "Metal3" 0.3 'soft ) ( minSpacing "Metal3" 0.3 'soft ) ( minDiagonalWidth "Metal3" 0.3 'soft ) ( minDiagonalSpacing "Metal3" 0.3 'soft ) ( minWireExtension "Metal3" 0.15 ) ) ;spacings interconnect( ( validLayers (Metal1 Metal2 Metal3 ) ) ) ;interconnect routingGrids( ( verticalPitch "Metal1" 0.66 ) ( horizontalPitch "Metal1" 0.66 ) ( verticalPitch "Metal2" 0.66 ) ( horizontalPitch "Metal2" 0.66 ) ( verticalPitch "Metal3" 0.66 ) ( horizontalPitch "Metal3" 0.66 ) ) ;routingGrids ) ;LEFDefaultRouteSpec ;( group [override] ) ;( ----- ---------- ) ( "foundry" nil spacings( ( minWidth "Nwell" 1.0 ) ( minSpacing "Nwell" 1.0 ) ( minWidth "Oxide" 0.4 ) ( minSpacing "Oxide" 0.3 ) ( minWidth "Poly" 0.18 ) ( minSpacing "Poly" 0.3 ) ( minWidth "Nimp" 0.4 ) ( minSpacing "Nimp" 0.4 ) ( minWidth "Pimp" 0.4 ) ( minSpacing "Pimp" 0.4 ) ( minWidth "Cont" 0.2 ) ( minSpacing "Cont" 0.2 ) ( minWidth "Via1" 0.2 ) ( minSpacing "Via1" 0.3 ) ( minSameNetSpacing "Poly" 0.3 ) ( minSameNetSpacing "Oxide" 0.3 ) ( minWidth "Via2" 0.2 ) ( minSpacing "Via2" 0.3 ) ( minWidth "Metal1" 0.3 ) ( minWidth "Metal2" 0.3 ) ( minWidth "Metal3" 0.3 ) ( minSpacing "Metal3" "Via2" 0.0 ) ( minSpacing "Oxide" "Poly" 0.2 ) ( minSpacing "Poly" "Cont" 0.2 ) ( minSameNetSpacing "Metal1" "Metal1" 0.3 ) ( minSameNetSpacing "Metal2" "Metal2" 0.3 ) ( minSameNetSpacing "Metal3" "Metal3" 0.3 ) ( minSameNetSpacing "Via1" "Via1" 0.3 ) ( minSameNetSpacing "Via2" "Via2" 0.3 ) ( minSameNetSpacing "Via1" "Via2" 0.0 ) ) ;spacings orderedSpacings( ( minEnclosure "Nwell" "Pimp" 0.3 ) ( minEnclosure "Nwell" "Metal1" 0.0 ) ( minEnclosure "Nwell" "Poly" 1.5 ) ( minEnclosure "Metal2" "Metal3" 0.3 ) ( minEnclosure "Metal3" "Via1" 0.3 ) ( minEnclosure "Nwell" "Oxide" 0.5 ) ( minEnclosure "Oxide" "Poly" 0.4 ) ( minEnclosure "Oxide" "Cont" 0.2 ) ( minEnclosure "Poly" "Cont" 0.2 ) ( minEnclosure "Nimp" "Oxide" 0.2 ) ( minEnclosure "Pimp" "Oxide" 0.2 ) ( minEnclosure "Pimp" "Poly" 0.5 ) ( minEnclosure "Metal1" "Cont" 0.1 ) ( minEnclosure "Metal1" "Via1" 0.1 ) ( minEnclosure "Metal2" "Via1" 0.1 ) ( minEnclosure "Poly" "Oxide" 0.2 ) ( minEnclosure "Metal2" "Via2" 0.1 ) ( minEnclosure "Metal3" "Via2" 0.1 ) ) ;orderedSpacings spacings( ( stackable "Metal2" "Metal2" t ) ( stackable "Metal3" "Metal3" t ) ( stackable "Via1" "Via2" t ) ) ;spacings spacingTables( ;( constraint layer1 [layer2] ; (( index1Definitions [index2Defintions]) [defaultValue] ) ; ( table) ) ;( --------------------------------------------) ( minSpacing "Metal1" (( "width" nil nil ) 0.3 ) ( 0.0 0.3 10.0 0.6 ) ) ( minSpacing "Metal2" (( "width" nil nil ) 0.3 ) ( 0.0 0.3 10.0 0.6 ) ) ( minSpacing "Metal3" (( "width" nil nil ) 0.3 ) ( 0.0 0.3 10.0 0.6 ) ) ) ;spacingTables spacings( ;( constraint layer1 [layer2] value ) ;( ---------- ------ -------- ----- ) ( minExtension "Poly" 0.2 ) ( minOverlap "Poly" "Oxide" 0.2 ) ) ;spacings electrical( ;( constraint layer1 [layer2] value ) ;( ---------- ------ -------- ----- ) ( contactRes "Poly" 0 ) ( contactRes "Oxide" 0 ) ) ;electrical orderedElectrical( ;( constraint layer1 layer2 value ) ;( ---------- ------ ------ ------ ) ( areaCap "Poly" "Nwell" 100.0 ) ( edgeCapacitance "Poly" "Nwell" 50.0 ) ( areaCap "Metal1" "Nwell" 30.0 ) ( edgeCapacitance "Metal1" "Nwell" 35.0 ) ( edgeCapacitance "Metal1" "Oxide" 45.0 ) ( areaCap "Metal1" "Oxide" 40.0 ) ( areaCap "Metal1" "Poly" 65.0 ) ( edgeCapacitance "Metal1" "Poly" 60.0 ) ( areaCap "Metal2" "Nwell" 15.0 ) ( edgeCapacitance "Metal2" "Nwell" 25.0 ) ( edgeCapacitance "Metal2" "Oxide" 27.0 ) ( areaCap "Metal2" "Oxide" 18.0 ) ( areaCap "Metal2" "Poly" 17.5 ) ( edgeCapacitance "Metal2" "Poly" 30.0 ) ( edgeCapacitance "Metal2" "Metal1" 45.0 ) ( areaCap "Metal2" "Metal1" 35.0 ) ( edgeCapacitance "Metal3" "Nwell" 20.0 ) ( areaCap "Metal3" "Nwell" 10.0 ) ( areaCap "Metal3" "Oxide" 12.5 ) ( edgeCapacitance "Metal3" "Oxide" 22.5 ) ( edgeCapacitance "Metal3" "Metal1" 25.5 ) ( areaCap "Metal3" "Metal1" 15.5 ) ( areaCap "Metal3" "Metal2" 35.5 ) ( edgeCapacitance "Metal3" "Metal2" 45.5 ) ) ;orderedElectrical ) ;foundry ) ;constraintGroups ;******************************** ; DEVICES ;******************************** devices( tcCreateCDSDeviceClass() multipartPathTemplates( ; ( name [masterPath] [offsetSubpaths] [encSubPaths] [subRects] ) ; ; masterPath: ; (layer [width] [choppable] [endType] [beginExt] [endExt] [justify] [offset] ; [connectivity]) ; ; offsetSubpaths: ; (layer [width] [choppable] [separation] [justification] [begOffset] [endOffset] ; [connectivity]) ; ; encSubPaths: ; (layer [enclosure] [choppable] [separation] [begOffset] [endOffset] ; [connectivity]) ; ; subRects: ; (layer [width] [length] [choppable] [separation] [justification] [space] [begOffset] [endOffset] [gap] ; [connectivity] [beginSegOffset] [endSegOffset]) ; ; connectivity: ; ([I/O type] [pin] [accDir] [dispPinName] [height] [ layer] ; [layer] [justification] [font] [textOptions] [orientation] ; [refHandle] [offset]) ; ; ( --------------------------------------------------------------------- ) (slotbus (("Metal1" "drawing") 5.0 t nil nil nil right 1.0) ((("Metal1" "drawing") 5.0 t 2.0 right) ) nil ((("Metal1" "drawing") 2.0 10.0 t nil right 10.0) ) ) (Nguardring (("Oxide" "drawing") 0.6 nil) ((("Metal1" "drawing") 0.4 t nil nil -0.1) (("Nimp" "drawing") 1.0 nil nil nil 0.2) (("Nwell" "drawing") 1.6 nil nil nil 0.5) ) nil ((("Cont" "drawing") nil nil t nil nil nil -0.2) ) ) (Pguardring (("Oxide" "drawing") 0.6 nil) ((("Metal1" "drawing") 0.4 t nil nil -0.1) (("Pimp" "drawing") 1.0 nil nil nil 0.2) ) nil ((("Cont" "drawing") nil nil t nil nil nil -0.2) ) ) (bus_x8_metal1 (("Metal1" "drawing")) ((("Metal1" "drawing") nil t 0.6) (("Metal1" "drawing") nil t 1.2) (("Metal1" "drawing") nil t 1.8) (("Metal1" "drawing") nil t 2.4) (("Metal1" "drawing") nil t 3.0) (("Metal1" "drawing") nil t 3.6) (("Metal1" "drawing") nil t 4.2) ) nil nil ) ) ;multipartPathTemplates ; Technology File gpdk ; Generated on Oct 27 17:16:50 2003 ; with @(#)$CDS: techManager.exe version EXP 10/27/2003 10:53 (lwong) $ ;******************************** ; CONTROLS ;******************************** controls( techParams( ;( parameter value ) ;( ---------- ----- ) ) ;techParams viewTypeUnits( ;( viewType userUnit dbuperuu ) ;( -------- -------- -------- ) ( maskLayout "micron" 2000 ) ( schematic "inch" 160 ) ( schematicSymbol "inch" 160 ) ( netlist "inch" 160 ) ) ;viewTypeUnits ) ;controls ;******************************** ; LAYER DEFINITION ;******************************** layerDefinitions( techPurposes( ;( PurposeName Purpose# Abbreviation ) ;( ----------- -------- ------------ ) ;User-Defined Purposes: ( GeoShare 1 GeoShare ) ;System-Reserved Purposes: ( warning 234 wng ) ( tool1 235 tl1 ) ( tool0 236 tl0 ) ( label 237 lbl ) ( flight 238 flt ) ( error 239 err ) ( annotate 240 ant ) ( drawing1 241 dr1 ) ( drawing2 242 dr2 ) ( drawing3 243 dr3 ) ( drawing4 244 dr4 ) ( drawing5 245 dr5 ) ( drawing6 246 dr6 ) ( drawing7 247 dr7 ) ( drawing8 248 dr8 ) ( drawing9 249 dr9 ) ( boundary 250 bnd ) ( pin 251 pin ) ( drawing 252 drw ) ( net 253 net ) ( cell 254 cel ) ( all 255 all ) ) ;techPurposes techLayers( ;( LayerName Layer# Abbreviation ) ;( --------- ------ ------------ ) ;User-Defined Layers: ( Oxide 1 OXIDE ) ( Nwell 2 NWELL ) ( Poly 3 POLY ) ( Nimp 4 NIMP ) ( Pimp 5 PIMP ) ( Cont 6 CONT ) ( Metal1 7 METAL1 ) ( Via1 8 VIA1 ) ( Metal2 9 METAL2 ) ( Via2 10 VIA2 ) ( Metal3 11 METAL3 ) ( Pwell 18 PWELL ) ;System-Reserved Layers: ( Unrouted 200 Unroute ) ( Row 201 Row ) ( Group 202 Group ) ( Cannotoccupy 203 noOcupy ) ( Canplace 204 Canplac ) ( hardFence 205 hardFnc ) ( softFence 206 softFnc ) ( y0 207 y0 ) ( y1 208 y1 ) ( y2 209 y2 ) ( y3 210 y3 ) ( y4 211 y4 ) ( y5 212 y5 ) ( y6 213 y6 ) ( y7 214 y7 ) ( y8 215 y8 ) ( y9 216 y9 ) ( designFlow 217 dsnFlow ) ( stretch 218 stretch ) ( edgeLayer 219 edgeLyr ) ( changedLayer 220 chngLyr ) ( unset 221 unset ) ( unknown 222 unknown ) ( spike 223 spike ) ( hiz 224 hiz ) ( resist 225 resist ) ( drive 226 drive ) ( supply 227 supply ) ( wire 228 wire ) ( pin 229 pin ) ( text 230 text ) ( device 231 device ) ( border 232 border ) ( snap 233 snap ) ( align 234 align ) ( prBoundary 235 prBndry ) ( instance 236 instnce ) ( annotate 237 anotate ) ( marker 238 marker ) ( select 239 select ) ( grid 251 grid ) ( axis 252 axis ) ( hilite 253 hilite ) ( background 254 bkground ) ) ;techLayers techLayerPurposePriorities( ;layers are ordered from lowest to highest priority ;( LayerName Purpose ) ;( --------- ------- ) ( Metal1 label ) ( Metal1 drawing4 ) ( Metal1 drawing ) ( Metal1 pin ) ( Metal1 net ) ( Metal1 boundary ) ( Via1 label ) ( Via1 pin ) ( Via1 drawing4 ) ( Via1 drawing ) ( Via1 net ) ( Via1 boundary ) ( Metal2 label ) ( Metal2 drawing4 ) ( Metal2 drawing ) ( Metal2 pin ) ( Metal2 net ) ( Metal2 boundary ) ( Via2 pin ) ( Via2 label ) ( Via2 drawing4 ) ( Via2 drawing ) ( Via2 net ) ( Via2 boundary ) ( Metal3 label ) ( Metal3 drawing4 ) ( Metal3 drawing ) ( Metal3 pin ) ( Metal3 net ) ( Metal3 boundary ) ( Cont drawing ) ( Cont net ) ( Cont boundary ) ( Poly label ) ( Poly drawing4 ) ( Poly drawing ) ( Poly pin ) ( Poly net ) ( Poly boundary ) ( Nwell drawing ) ( Nwell net ) ( Nwell boundary ) ( Pwell drawing ) ( Pwell net ) ( Pwell boundary ) ( Oxide drawing ) ( Oxide net ) ( Oxide boundary ) ( Nimp drawing ) ( Nimp boundary ) ( Pimp drawing ) ( Pimp boundary ) ( background drawing ) ( grid drawing ) ( grid drawing1 ) ( annotate drawing ) ( annotate drawing1 ) ( annotate drawing2 ) ( annotate drawing3 ) ( annotate drawing4 ) ( annotate drawing5 ) ( annotate drawing6 ) ( annotate drawing7 ) ( annotate drawing8 ) ( annotate drawing9 ) ( instance drawing ) ( instance label ) ( prBoundary drawing ) ( prBoundary boundary ) ( prBoundary label ) ( align drawing ) ( hardFence drawing ) ( softFence drawing ) ( text drawing ) ( text label ) ( text drawing1 ) ( text drawing2 ) ( border drawing ) ( device drawing ) ( device label ) ( device drawing1 ) ( device drawing2 ) ( device annotate ) ( wire drawing ) ( wire label ) ( wire flight ) ( pin label ) ( pin drawing ) ( pin annotate ) ( axis drawing ) ( edgeLayer drawing ) ( edgeLayer pin ) ( snap drawing ) ( stretch drawing ) ( y0 drawing ) ( y1 drawing ) ( y2 drawing ) ( y3 drawing ) ( y4 drawing ) ( y5 drawing ) ( y6 drawing ) ( y7 drawing ) ( y8 drawing ) ( y9 drawing ) ( hilite drawing ) ( hilite drawing1 ) ( hilite drawing2 ) ( hilite drawing3 ) ( hilite drawing4 ) ( hilite drawing5 ) ( hilite drawing6 ) ( hilite drawing7 ) ( hilite drawing8 ) ( hilite drawing9 ) ( select drawing ) ( drive drawing ) ( hiz drawing ) ( resist drawing ) ( spike drawing ) ( supply drawing ) ( unknown drawing ) ( unset drawing ) ( designFlow drawing ) ( designFlow drawing1 ) ( designFlow drawing2 ) ( designFlow drawing3 ) ( designFlow drawing4 ) ( designFlow drawing5 ) ( designFlow drawing6 ) ( designFlow drawing7 ) ( designFlow drawing8 ) ( designFlow drawing9 ) ( changedLayer tool0 ) ( changedLayer tool1 ) ( marker warning ) ( marker error ) ( Row drawing ) ( Row label ) ( Group drawing ) ( Group label ) ( Cannotoccupy drawing ) ( Cannotoccupy boundary ) ( Canplace drawing ) ( Unrouted drawing ) ( Unrouted drawing1 ) ( Unrouted drawing2 ) ( Unrouted drawing3 ) ( Unrouted drawing4 ) ( Unrouted drawing5 ) ( Unrouted drawing6 ) ( Unrouted drawing7 ) ( Unrouted drawing8 ) ( Unrouted drawing9 ) ) ;techLayerPurposePriorities techDisplays( ;( LayerName Purpose Packet Vis Sel Con2ChgLy DrgEnbl Valid ) ;( --------- ------- ------ --- --- --------- ------- ----- ) ( Metal1 label m1 t t t t nil ) ( Metal1 drawing4 m1 t t t t nil ) ( Metal1 drawing m1 t t t t t ) ( Metal1 pin m1Pin t t t t nil ) ( Metal1 net m1Net t t t t nil ) ( Metal1 boundary m1Bnd t t t t nil ) ( Via1 label v1 t t t t nil ) ( Via1 pin v1 t t t t nil ) ( Via1 drawing4 v1 t t t t nil ) ( Via1 drawing v1 t t t t t ) ( Via1 net v1Net t t t t nil ) ( Via1 boundary v1Bnd t t t t nil ) ( Metal2 label m2 t t t t nil ) ( Metal2 drawing4 m2 t t t t nil ) ( Metal2 drawing m2 t t t t t ) ( Metal2 pin m2Pin t t t t nil ) ( Metal2 net m2Net t t t t nil ) ( Metal2 boundary m2Bnd t t t t nil ) ( Via2 pin v2 t t t t nil ) ( Via2 label v2 t t t t nil ) ( Via2 drawing4 v2 t t t t nil ) ( Via2 drawing v2 t t t t t ) ( Via2 net v2Net t t t t nil ) ( Via2 boundary v2Bnd t t t t nil ) ( Metal3 label m3 t t t t nil ) ( Metal3 drawing4 m3 t t t t nil ) ( Metal3 drawing m3 t t t t t ) ( Metal3 pin m3Pin t t t t nil ) ( Metal3 net m3Net t t t t nil ) ( Metal3 boundary m3Bnd t t t t nil ) ( Cont drawing cw t t t t t ) ( Cont net cwNet t t t t nil ) ( Cont boundary cwBnd t t t t nil ) ( Poly label poly1 t t t t nil ) ( Poly drawing4 poly1 t t t t nil ) ( Poly drawing poly1 t t t t t ) ( Poly pin poly1Pin t t t t nil ) ( Poly net poly1Net t t t t nil ) ( Poly boundary poly1Bnd t t t t nil ) ( Nwell drawing nwell t t t t t ) ( Nwell net nwellNet t t t t nil ) ( Nwell boundary nwellBnd t t t t nil ) ( Pwell drawing pwell t t t t t ) ( Pwell net pwellNet t t t t nil ) ( Pwell boundary pwellBnd t t t t nil ) ( Oxide drawing tox t t t t t ) ( Oxide net toxBnd t t t t nil ) ( Oxide boundary toxBnd t t t t nil ) ( Nimp drawing nplus t t t t t ) ( Nimp boundary nplusBnd t t t t nil ) ( Pimp drawing pplus t t t t t ) ( Pimp boundary pplusBnd t t t t nil ) ( background drawing background t nil t nil nil ) ( grid drawing grid t nil t nil nil ) ( grid drawing1 grid1 t nil t nil nil ) ( annotate drawing annotate t t t t nil ) ( annotate drawing1 annotate1 t t t t nil ) ( annotate drawing2 annotate2 t t t t nil ) ( annotate drawing3 annotate3 t t t t nil ) ( annotate drawing4 annotate4 t t t t nil ) ( annotate drawing5 annotate5 t t t t nil ) ( annotate drawing6 annotate6 t t t t nil ) ( annotate drawing7 annotate7 t t t t nil ) ( annotate drawing8 annotate8 t t t t nil ) ( annotate drawing9 annotate9 t t t t nil ) ( instance drawing instance t t t t nil ) ( instance label instanceLbl t t t t nil ) ( prBoundary drawing prBoundary t t t t t ) ( prBoundary boundary prBoundaryBnd t t t t nil ) ( prBoundary label prBoundaryLbl t t t t nil ) ( align drawing defaultPacket t t t t nil ) ( hardFence drawing hardFence t t t t nil ) ( softFence drawing softFence t t t t nil ) ( text drawing text t t t t t ) ( text label text t t t t t ) ( text drawing1 text1 t t t t nil ) ( text drawing2 text2 t t t t nil ) ( border drawing border t t t t nil ) ( device drawing device t t t t nil ) ( device label deviceLbl t t t t nil ) ( device drawing1 device1 t t t t nil ) ( device drawing2 device2 t t t t nil ) ( device annotate deviceAnt t t t t nil ) ( wire drawing wire t t t t nil ) ( wire label wireLbl t t t t nil ) ( wire flight wireFlt t t t t nil ) ( pin label pinLbl t t t t nil ) ( pin drawing pin t t t t nil ) ( pin annotate pinAnt t t t t nil ) ( axis drawing axis t nil t t nil ) ( edgeLayer drawing edgeLayer t t t t nil ) ( edgeLayer pin edgeLayerPin t t t t nil ) ( snap drawing snap t t t t nil ) ( stretch drawing stretch t t t t nil ) ( y0 drawing y0 t t t t nil ) ( y1 drawing y1 t t t t nil ) ( y2 drawing y2 t t t t nil ) ( y3 drawing y3 t t t t nil ) ( y4 drawing y4 t t t t nil ) ( y5 drawing y5 t t t t nil ) ( y6 drawing y6 t t t t nil ) ( y7 drawing y7 t t t t nil ) ( y8 drawing y8 t t t t nil ) ( y9 drawing y9 t t t t nil ) ( hilite drawing hilite t t t t nil ) ( hilite drawing1 hilite1 t t t t nil ) ( hilite drawing2 hilite2 t t t t nil ) ( hilite drawing3 hilite3 t t t t nil ) ( hilite drawing4 hilite4 t t t t nil ) ( hilite drawing5 hilite5 t t t t nil ) ( hilite drawing6 hilite6 t t t t nil ) ( hilite drawing7 hilite7 t t t t nil ) ( hilite drawing8 hilite8 t t t t nil ) ( hilite drawing9 hilite9 t t t t nil ) ( select drawing select t t t t nil ) ( drive drawing drive t t t t nil ) ( hiz drawing hiz t t t t nil ) ( resist drawing resist t t t t nil ) ( spike drawing spike t t t t nil ) ( supply drawing supply t t t t nil ) ( unknown drawing unknown t t t t nil ) ( unset drawing unset t t t t nil ) ( designFlow drawing designFlow t nil nil nil t ) ( designFlow drawing1 designFlow1 t nil nil nil t ) ( designFlow drawing2 designFlow2 t nil nil nil t ) ( designFlow drawing3 designFlow3 t nil nil nil t ) ( designFlow drawing4 designFlow4 t nil nil nil t ) ( designFlow drawing5 designFlow5 t nil nil nil t ) ( designFlow drawing6 designFlow6 t nil nil nil t ) ( designFlow drawing7 designFlow7 t nil nil nil t ) ( designFlow drawing8 designFlow8 t nil nil nil t ) ( designFlow drawing9 designFlow9 t nil nil nil t ) ( changedLayer tool0 changedLayerTl0 nil nil t nil nil ) ( changedLayer tool1 changedLayerTl1 nil nil t nil nil ) ( marker warning markerWarn t t t t nil ) ( marker error markerErr t t t t nil ) ( Row drawing prBoundaryLbl t t t t t ) ( Row label RowLbl t t t t nil ) ( Group drawing Group t t t t nil ) ( Group label GroupLbl t t t t nil ) ( Cannotoccupy drawing Cannotoccupy t t t t nil ) ( Cannotoccupy boundary CannotoccupyBnd t t t t nil ) ( Canplace drawing Canplace t t t t nil ) ( Unrouted drawing Unrouted t t t t nil ) ( Unrouted drawing1 Unrouted1 t t t t nil ) ( Unrouted drawing2 Unrouted2 t t t t nil ) ( Unrouted drawing3 Unrouted3 t t t t nil ) ( Unrouted drawing4 Unrouted4 t t t t nil ) ( Unrouted drawing5 Unrouted5 t t t t nil ) ( Unrouted drawing6 Unrouted6 t t t t nil ) ( Unrouted drawing7 Unrouted7 t t t t nil ) ( Unrouted drawing8 Unrouted8 t t t t nil ) ( Unrouted drawing9 Unrouted9 t t t t nil ) ) ;techDisplays ) ;layerDefinitions ;******************************** ; LAYER RULES ;******************************** layerRules( viaLayers( ;( layer1 viaLayer layer2 ) ;( ------ -------- ------ ) ( Poly Cont Metal1 ) ( Oxide Cont Metal1 ) ( Metal1 Via1 Metal2 ) ( Metal2 Via2 Metal3 ) ) ;viaLayers streamLayers( ;( layer streamNumber dataType translate ) ;( ----- ------------ -------- --------- ) ( ("Metal1" "drawing") 7 0 t ) ( ("Metal1" "pin") 7 1 t ) ( ("Via1" "drawing") 8 0 t ) ( ("Metal2" "drawing") 9 0 t ) ( ("Metal2" "pin") 9 1 t ) ( ("Via2" "drawing") 10 0 t ) ( ("Metal3" "drawing") 11 0 t ) ( ("Metal3" "pin") 11 1 t ) ( ("Cont" "drawing") 6 0 t ) ( ("Poly" "drawing") 3 0 t ) ( ("Nwell" "drawing") 2 0 t ) ( ("Pwell" "drawing") 18 0 t ) ( ("Oxide" "drawing") 1 0 t ) ( ("Nimp" "drawing") 4 0 t ) ( ("Pimp" "drawing") 5 0 t ) ( ("Metal1" "net") 7 2 t ) ( ("Metal2" "net") 9 2 t ) ( ("Metal3" "net") 11 2 t ) ( ("Poly" "pin") 3 1 t ) ( ("Poly" "net") 3 2 t ) ( ("Metal1" "drawing4") 7 4 t ) ( ("Metal1" "label") 7 3 t ) ( ("Via1" "drawing4") 8 4 t ) ( ("Via1" "pin") 8 1 t ) ( ("Via1" "label") 8 3 t ) ( ("Metal2" "drawing4") 9 4 t ) ( ("Metal2" "label") 9 3 t ) ( ("Via2" "drawing4") 10 4 t ) ( ("Via2" "label") 10 3 t ) ( ("Via2" "pin") 10 1 t ) ( ("Metal3" "drawing4") 11 4 t ) ( ("Metal3" "label") 11 3 t ) ( ("Poly" "drawing4") 3 4 t ) ( ("Poly" "label") 3 3 t ) ( ("text" "drawing") 230 0 t ) ( ("text" "label") 230 3 t ) ( ("prBoundary" "drawing") 235 0 t ) ( ("prBoundary" "boundary") 235 5 t ) ) ;streamLayers layerFunctions( ;( layer material [maskNumber]) ;( ----- -------- ------------) ( Nwell "nwell" 1 ) ( Pwell "pwell" 2 ) ( Oxide "other" 3 ) ( Nimp "nImplant" 4 ) ( Pimp "pImplant" 5 ) ( Poly "poly" 6 ) ( Cont "cut" 7 ) ( Metal1 "metal" 8 ) ( Via1 "cut" 9 ) ( Metal2 "metal" 10 ) ( Via2 "cut" 11 ) ( Metal3 "metal" 12 ) ) ) ;layerRules ;******************************** ; PHYSICAL RULES ;******************************** physicalRules( spacingRules( ;( rule layer1 layer2 value ) ;( ---- ------ ------ ----- ) ( minExtension "Poly" 0.2 ) ( minWidth "Nwell" 1 ) ( minSpacing "Nwell" 1 ) ( minWidth "Oxide" 0.4 ) ( minSpacing "Oxide" 0.3 ) ( minWidth "Poly" 0.18 ) ( minSpacing "Poly" 0.3 ) ( minWidth "Nimp" 0.4 ) ( minSpacing "Nimp" 0.4 ) ( minWidth "Pimp" 0.4 ) ( minSpacing "Pimp" 0.4 ) ( minWidth "Cont" 0.2 ) ( minSpacing "Cont" 0.2 ) ( minWidth "Via1" 0.2 ) ( minSpacing "Via1" 0.3 ) ( minNotch "Poly" 0.3 ) ( minNotch "Oxide" 0.3 ) ( minWidth "Via2" 0.2 ) ( minSpacing "Via2" 0.3 ) ( minWidth "Metal1" 0.3 ) ( minSpacing "Metal1" 0.3 ) ( minSpacingRange "Metal1" ("0.600 RANGE 10.000 100000.000") ) ( minWidth "Metal2" 0.3 ) ( minSpacing "Metal2" 0.3 ) ( minSpacingRange "Metal2" ("0.600 RANGE 10.000 100000.000") ) ( minWidth "Metal3" 0.3 ) ( minSpacing "Metal3" 0.3 ) ( minSpacingRange "Metal3" ("0.600 RANGE 10.000 100000.000") ) ( minSpacing "Metal3" "Via2" 0 ) ( minOverlap "Poly" "Oxide" 0.2 ) ( minSpacing "Oxide" "Poly" 0.2 ) ( minSpacing "Poly" "Cont" 0.2 ) ( minSameNetSpacing "Metal1" "Metal1" 0.3 ) ( minSameNetSpacing "Metal2" "Metal2" 0.3 ) ( minSameNetSpacing "Metal3" "Metal3" 0.3 ) ( minSameNetSpacing "Via1" "Via1" 0.3 ) ( minSameNetSpacing "Via2" "Via2" 0.3 ) ( minSameNetSpacing "Via1" "Via2" 0.0 ) ) ;spacingRules orderedSpacingRules( ;( rule layer1 layer2 value ) ;( ---- ------ ------ ----- ) ( minEnclosure "Nwell" "Pimp" 0.3 ) ( minEnclosure "Nwell" "Metal1" 0 ) ( minEnclosure "Nwell" "Poly" 1.5 ) ( minEnclosure "Metal2" "Metal3" 0.3 ) ( minEnclosure "Metal3" "Via1" 0.3 ) ( minEnclosure "Nwell" "Oxide" 0.5 ) ( minEnclosure "Oxide" "Poly" 0.4 ) ( minEnclosure "Oxide" "Cont" 0.2 ) ( minEnclosure "Poly" "Cont" 0.2 ) ( minEnclosure "Nimp" "Oxide" 0.2 ) ( minEnclosure "Pimp" "Oxide" 0.2 ) ( minEnclosure "Pimp" "Poly" 0.5 ) ( minEnclosure "Metal1" "Cont" 0.1 ) ( minEnclosure "Metal1" "Via1" 0.1 ) ( minEnclosure "Metal2" "Via1" 0.1 ) ( minEnclosure "Poly" "Oxide" 0.2 ) ( minEnclosure "Metal2" "Via2" 0.1 ) ( minEnclosure "Metal3" "Via2" 0.1 ) ) ;orderedSpacingRules mfgGridResolution( ( 0.005000 ) ) ;mfgGridResolution ) ;physicalRules ;******************************** ; ELECTRICAL RULES ;******************************** electricalRules( characterizationRules( ;( rule layer1 layer2 value ) ;( ---- ------ ------ ----- ) ( sheetRes "Nimp" 300 ) ( sheetRes "Poly" 7.5 ) ( contactRes "Poly" 0 ) ( contactRes "Oxide" 0 ) ( sheetRes "Oxide" 300 ) ( sheetRes "Metal1" 0.101 ) ( areaCap "Metal1" 0.000132 ) ( edgeCapacitance "Metal1" 0.0 ) ( sheetRes "Metal2" 0.101 ) ( areaCap "Metal2" 7e-05 ) ( edgeCapacitance "Metal2" 0.0 ) ( sheetRes "Metal3" 0.101 ) ( areaCap "Metal3" 6.3e-05 ) ( edgeCapacitance "Metal3" 0.0 ) ) ;characterizationRules orderedCharacterizationRules( ;( rule layer1 layer2 value ) ;( ---- ------ ------ ----- ) ( areaCap "Poly" "Nwell" 100 ) ( edgeCapacitance "Poly" "Nwell" 50 ) ( areaCap "Metal1" "Nwell" 30 ) ( edgeCapacitance "Metal1" "Nwell" 35 ) ( edgeCapacitance "Metal1" "Oxide" 45 ) ( areaCap "Metal1" "Oxide" 40 ) ( areaCap "Metal1" "Poly" 65 ) ( edgeCapacitance "Metal1" "Poly" 60 ) ( areaCap "Metal2" "Nwell" 15 ) ( edgeCapacitance "Metal2" "Nwell" 25 ) ( edgeCapacitance "Metal2" "Oxide" 27 ) ( areaCap "Metal2" "Oxide" 18 ) ( areaCap "Metal2" "Poly" 17.5 ) ( edgeCapacitance "Metal2" "Poly" 30 ) ( edgeCapacitance "Metal2" "Metal1" 45 ) ( areaCap "Metal2" "Metal1" 35 ) ( edgeCapacitance "Metal3" "Nwell" 20 ) ( areaCap "Metal3" "Nwell" 10 ) ( areaCap "Metal3" "Oxide" 12.5 ) ( edgeCapacitance "Metal3" "Oxide" 22.5 ) ( edgeCapacitance "Metal3" "Metal1" 25.5 ) ( areaCap "Metal3" "Metal1" 15.5 ) ( areaCap "Metal3" "Metal2" 35.5 ) ( edgeCapacitance "Metal3" "Metal2" 45.5 ) ) ;orderedCharacterizationRules ) ;electricalRules ;******************************** ; VIADEFS ;******************************** viaDefs( standardViaDefs( ;(viaDefName layer1 layer2 (cutLayer cutWidth cutHeight [resistancePerCut]) ; (cutRows cutCol (cutSpace)) ; (layer1Enc) (layer2Enc) (layer1Offset) (layer2Offset) (origOffset) ; [implant1 (implant1Enc) [implant2 (implant2Enc)]]) ;( --------------------------------------------------------------------------) ( M1_M2 Metal1 Metal2 ("Via1" 0.2 0.2) (1 1 (0.0 0.0)) (0.1 0.1) (0.2 0.2) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( M2_M3 Metal2 Metal3 ("Via2" 0.1 0.2) (1 1 (0.0 0.0)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( Via12Array Metal1 Metal2 ("Via1" 0.2 0.2) (1 1 (0.3 0.3)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ( Via23Array Metal2 Metal3 ("Via2" 0.2 0.2) (1 1 (0.3 0.3)) (0.1 0.1) (0.1 0.1) (0.0 0.0) (0.0 0.0) (0.0 0.0) ) ) ;standardViaDefs customViaDefs( ;( viaDefName libName cellName viewName layer1 layer2 resistancePerCut) ;( ---------- ------- -------- -------- ------ ------ ----------------) ( M3_M2_symbolic sample2003 M3_M2 symbolic Metal2 Metal3 0.0) ( M2_M1_symbolic sample2003 M2_M1 symbolic Metal1 Metal2 0.0) ) ;customViaDefs ) ;viaDefs ;******************************** ; DEVICES ;******************************** devices( tcCreateCDSDeviceClass() ; ; no syEnhancement devices ; ; ; no syDepletion devices ; symContactDevice( ; (name viaLayer viaPurpose layer1 purpose1 layer2 purpose2 ; w l (row column xPitch yPitch xBias yBias) encByLayer1 encByLayer2 legalRegion) (M1_POLY1 Cont drawing Poly drawing Metal1 drawing 0.2 0.2 (1 1 0.5 0.5 center center) 0.2 0.1 _NA_) (M1_NIMP Cont drawing Oxide drawing (Nimp drawing 0.2) Metal1 drawing 0.2 0.2 (1 1 0.5 0.5 center center) 0.2 0.1 _NA_) (M1_NWELL Cont drawing Oxide drawing (Nimp drawing 0.2) Metal1 drawing (Nwell drawing 0.6) 0.2 0.2 (1 1 0.5 0.5 center center) 0.2 0.1 _NA_) |