wave-bug.ps 56.2 KB
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 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
%!PS-Adobe-2.0 EPSF-2.0
%%BoundingBox: 0 0 792 612
%%Creator: Synopsys VirSim (c) (berndt@elk.routefree.com)
%%Title: VirSim Waves Print Job
%%CreationDate: Thu May 22 13:59:28 2003
%%Pages: (atend)
%%DocumentFonts: (atend)
%%EndComments

%% RCS $Id: prologue.ps,v 1.1.1.2 2002/04/01 13:30:12 scottn Exp $
%% PostScript Prologue for VirSim and Verification Desktop
%% Copyright 1993-2000 Synopsys, Inc.
%% All rights reserved.
%%
%% DON'T edit this file.

/pslStartOfJobSave save def

%%------------------------------------------------------------------------------
%% return max of two values
%% v1 v2 pslMax => max(v1,v2)
/pslMax
{
	2 copy ge { pop } { exch pop } ifelse

} bind def

%%------------------------------------------------------------------------------
%% return min of two values
%% v1 v2 pslMin => min(v1,v2)
/pslMin
{
	2 copy le { pop } { exch pop } ifelse

} bind def

%%------------------------------------------------------------------------------
%% display 1 label (centered on time t1) in vector region
%% t1 valStr
/pslDVL1
{
	pslPushDict

	/valStr exch def
	/t1 exch def

	/x1 pslTimeBarLeft t1 pslBarBeginTime sub pslWidthOverTime mul add def

	x1 pslTextBaseY moveto valStr show

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% display 2 labels (centered on times t1, t2) at each end of vector region
%% t1 t2 valStr
/pslDVL2
{
	pslPushDict

	/valStr exch def
	/t1 exch def
	/t2 exch def

	/x1 pslTimeBarLeft t1 pslBarBeginTime sub pslWidthOverTime mul add def
	/x2 pslTimeBarLeft t2 pslBarBeginTime sub pslWidthOverTime mul add def

	x1 pslTextBaseY moveto valStr show
	x2 pslTextBaseY moveto valStr show

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% xmin xmax yloc linewidth
/pslHLine
{
	setlinewidth
	/yloc exch def
	/xmax exch def
	/xmin exch def

	newpath
	xmin yloc moveto xmax yloc lineto
	stroke

} bind def

%%------------------------------------------------------------------------------
%% ymin ymax xloc linewidth
/pslVLine
{
	setlinewidth
	/xloc exch def
	/ymax exch def
	/ymin exch def

	newpath
	xloc ymin moveto xloc ymax lineto
	stroke

} bind def

%%------------------------------------------------------------------------------
%% xLow yLow xHigh yHigh inset pslInsetRectXY xLow' yLow' xHigh' yHigh'
/pslInsetRectXY
{
	pslPushDict

	/inset exch def

	inset sub 4 1 roll
	inset sub 4 1 roll
	inset add 4 1 roll
	inset add 4 1 roll

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% xlow ylow width height linewidth pslOutlineRect
/pslOutlineRect
{
	gsave

	setlinewidth
	/height exch def
	/width exch def
	/ylow exch def
	/xlow exch def
	/xhigh xlow width add def
	/yhigh ylow height add def

	newpath
	xlow ylow moveto xhigh ylow lineto
	xhigh yhigh lineto xlow yhigh lineto
	closepath stroke

	grestore

} bind def


%%------------------------------------------------------------------------------
%% xJust yJust width height justify pslRectJustifyToLB xLB yLB width height
%%
/pslRectJustifyToLB
{
	pslPushDict

	/justify	exch def
	/height		exch def
	/width		exch def
	/yJust		exch def
	/xJust		exch def

	justify pslJustifyLT eq {
		/xLB xJust def
		/yLB yJust height sub def
	}{
	justify pslJustifyCT eq {
		/xLB xJust width 2 div sub def
		/yLB yJust height sub def
	}{
	justify pslJustifyRT eq {
		/xLB xJust width sub def
		/yLB yJust height sub def
	}{
	justify pslJustifyLC eq {
		/xLB xJust def
		/yLB yJust height 2 div sub def
	}{
	justify pslJustifyCC eq {
		/xLB xJust width 2 div sub def
		/yLB yJust height 2 div sub def
	}{
	justify pslJustifyRC eq {
		/xLB xJust width sub def
		/yLB yJust height 2 div sub def
	}{
	justify pslJustifyLB eq {
		/xLB xJust def
		/yLB yJust def
	}{
	justify pslJustifyCB eq {
		/xLB xJust width 2 div sub def
		/yLB yJust def
	}{
	justify pslJustifyRB eq {
		/xLB xJust width sub def
		/yLB yJust def
	}{
	%% default: assume justify lower-left
		/xLB xJust def
		/yLB yJust def
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse

	% push return vals on stack
	xLB yLB width height

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% xLB yLB width height justify pslRectLBToJustify xJust yJust width height
%%
/pslRectLBToJustify
{
	pslPushDict

	/justify	exch def
	/height		exch def
	/width		exch def
	/yLB		exch def
	/xLB		exch def

	justify pslJustifyLT eq {
		/xJust xLB def
		/yJust yLB height add def
	}{
	justify pslJustifyCT eq {
		/xJust xLB width 2 div add def
		/yJust yLB height add def
	}{
	justify pslJustifyRT eq {
		/xJust xLB width add def
		/yJust yLB height add def
	}{
	justify pslJustifyLC eq {
		/xJust xLB def
		/yJust yLB height 2 div add def
	}{
	justify pslJustifyCC eq {
		/xJust xLB width 2 div add def
		/yJust yLB height 2 div add def
	}{
	justify pslJustifyRC eq {
		/xJust xLB width add def
		/yJust yLB height 2 div add def
	}{
	justify pslJustifyLB eq {
		/xJust xLB def
		/yJust yLB def
	}{
	justify pslJustifyCB eq {
		/xJust xLB width 2 div add def
		/yJust yLB def
	}{
	justify pslJustifyRB eq {
		/xJust xLB width add def
		/yJust yLB def
	}{
	%% default: assume justify lower-left
		/xJust xLB def
		/yJust yLB def
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse
	} ifelse

	% push return vals on stack
	xJust yJust width height

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% x y width height justify linewidth pslCornerBox
/pslCornerBox
{
	pslPushDict

	/linewidth exch def

	pslRectJustifyToLB linewidth pslOutlineRect

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% xlow xmid ylow width height setgrayArg pslFillTriangle
/pslFillTriangle
{
	gsave

	setgray	% operand assumed on stack

	/height	exch def
	/width	exch def
	/ylow	exch def
	/xmid   exch def
	/xlow	exch def

	/xhigh xlow width add def
	/yhigh ylow height add def

	newpath
	xlow ylow moveto xhigh ylow lineto
	xmid yhigh lineto 
	closepath fill

	grestore

} bind def

%%------------------------------------------------------------------------------
%% xlow xmid ylow ymid width height setgrayArg pslFillDiamond
/pslFillDiamond
{
	gsave

	setgray	% operand assumed on stack

	/height	exch def
	/width	exch def
	/ymid   exch def
	/ylow	exch def
	/xmid   exch def
	/xlow	exch def

	/xhigh xlow width add def
	/yhigh ylow height add def

	newpath
	xlow ymid moveto xmid ylow lineto
	xhigh ymid lineto xmid yhigh lineto
	closepath fill

	grestore

} bind def

%%------------------------------------------------------------------------------
%% xlow ylow width height setgrayArg pslFillRect
/pslFillRect
{
	gsave

	setgray	% operand assumed on stack

	/height	exch def
	/width	exch def
	/ylow	exch def
	/xlow	exch def

	/xhigh xlow width add def
	/yhigh ylow height add def
	newpath
	xlow ylow moveto xhigh ylow lineto
	xhigh yhigh lineto xlow yhigh lineto
	closepath fill

	grestore

} bind def

%%------------------------------------------------------------------------------
%% xLow yLow xHigh yHigh setgrayArg pslFillRectXY
/pslFillRectXY
{
	gsave

	setgray	% operand assumed on stack

	/yHigh	exch def
	/xHigh	exch def
	/yLow	exch def
	/xLow	exch def

	newpath
	xLow yLow moveto xHigh yLow lineto
	xHigh yHigh lineto xLow yHigh lineto
	closepath fill

	grestore

} bind def

%%------------------------------------------------------------------------------
%% xmin ymin xmax ymax
/pslClipRect
{
	/pslClipRect_ymax exch def
	/pslClipRect_xmax exch def
	/pslClipRect_ymin exch def
	/pslClipRect_xmin exch def

	newpath
	pslClipRect_xmin pslClipRect_ymin moveto
	pslClipRect_xmin pslClipRect_ymax lineto
	pslClipRect_xmax pslClipRect_ymax lineto
	pslClipRect_xmax pslClipRect_ymin lineto
	closepath
	clip

} bind def

%%------------------------------------------------------------------------------
%% xLB yLB width height xScale yScale pslScaleRect xLB' yLB' width' height'
/pslScaleRect
{
	pslPushDict

	/xScale		exch abs def
	/yScale		exch abs def
	/height		exch def
	/width		exch def
	/yLB		exch def
	/xLB		exch def

	/xCenter xLB width 2 div add def
	/yCenter yLB height 2 div add def

	/height height yScale mul def
	/width width xScale mul def

	/yLB yCenter height 2 div sub def
	/xLB xCenter width 2 div sub def

	xLB yLB width height

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% x y labelHeight labelJustify str
%%
%% Note: label will be displayed such that requested justify point
%% coincides with x,y.
%%
/pslDisplayLabel
{
	pslPushDict

	/str			exch def
	/labelJustify	exch def
	/labelHeight	exch def
	/y				exch def
	/x				exch def

	str stringwidth
	pop					% discard wy--normally 0
	/wx exch def

	x y wx labelHeight labelJustify pslRectJustifyToLB
	pop pop moveto	% pop width,height, moveto exposed x,y
	str show

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% labelStrArray pslSigData
/pslSigData
{
	pslPushDict

	/labels exch def

	/separatorY pslTimeBarBottom def
	/labelRightX pslSigLabelBoxRight pslSigLabelBoxWidth 0.05 mul sub def
	/fileIdRightX pslSigFileIdBoxRight pslSigFileIdBoxWidth 0.1 mul sub def

	gsave
	/Courier findfont pslLabelHeight scalefont setfont
	[.25 3] 0 setdash
	labels
	{
		dup /wvHeight exch 0 get def
		dup /theFileId exch 1 get def
		/theLabel exch 2 get def

		%% draw the separator line below the label
		/separatorY separatorY pslLabelAreaHeight wvHeight mul sub def
		pslXMin pslXMax separatorY 0.0 pslHLine

		%% Calculate label position.
		/labelYPos separatorY pslLabelAreaHeight wvHeight mul 2 div pslLabelHeight 0.20 mul add add def
	
		%% display the file id
		fileIdRightX labelYPos pslLabelHeight pslJustifyRC theFileId pslDisplayLabel

	} forall

	%% Display vertical separator.
	separatorY pslTimeBarBottom pslSigFileIdBoxRight 0.0 pslVLine

	%% Reset clip rectangle so we don't over-write file id area.
	/separatorY pslTimeBarBottom def
	pslSigFileIdBoxRight 6.0 add 0.0 pslSigLabelBoxRight pslTimeBarBottom pslClipRect

	labels
	{
		dup /wvHeight exch 0 get def
		dup /theFileId exch 1 get def
		/theLabel exch 2 get def

		%% Calculate label position.
		/separatorY separatorY pslLabelAreaHeight wvHeight mul sub def
		/labelYPos separatorY pslLabelAreaHeight wvHeight mul 2 div pslLabelHeight 0.20 mul add add def
	
		%% display the label
		labelRightX labelYPos pslLabelHeight pslJustifyRC theLabel pslDisplayLabel

	} forall


	grestore

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% labelText pslSigLabelsHeaderBox
/pslSigLabelsHeaderBox
{
	pslPushDict

	/labelText exch def

	pslXMin pslInfoBoxBottom 
		pslSigFileIdBoxWidth pslSigLabelBoxWidth add
		pslTimeBarHeight
		pslJustifyLT 
		pslLineWidth
		pslCornerBox

	gsave
		/Courier findfont 1 scalefont setfont
		labelText stringwidth
		pop	% pop wy, not needed
		/unitStringWidth exch def
		/xScale pslSigLabelBoxWidth 0.75 mul unitStringWidth div def
		/yScale pslTimeBarHeight 0.5 mul def
		xScale yScale lt
			{ /minScale xScale def }
			{ /minScale yScale def }
			ifelse
		currentfont minScale scalefont setfont
		pslXMin pslTimeBarBottom
			pslSigLabelBoxWidth pslTimeBarHeight pslJustifyCC
			pslRectLBToJustify pop pop
		pslTimeBarHeight 16 div add
		minScale pslJustifyCC labelText pslDisplayLabel
	grestore

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% xUL yUL width height
%% beginTime firstTicTime ticInterval numMajorTics lastTicTime endTime
%% timeUnitLabel ticksPerUnit theMarkers
/pslTimeBar
{
	pslPushDict

	/theMarkers         exch def
	/ticksPerUnit		exch def
	/timeUnitLabel		exch def
	/endTime			exch def
	/lastTicTime		exch def
	/numMajorTics		exch def
	/ticInterval		exch def
	/firstTicTime		exch def
	/beginTime			exch def
	/height				exch def
	/width				exch def
	/yUL				exch def
	/xUL				exch def

	/xmin xUL def
	/xmax xUL width add def
	/ymin yUL height sub def
	/ymax yUL def


	%---------------------------------------------------------------------------
	% Set the time label height and stagger. If, at the desired label height,
	% the label length (a function of # of decimal digits required to display
	% the maximum time) would occupy > 80% of the width between major tics,
	% plan A is to stagger the labels--if the labels still won't fit, then scale
	% down to fit. In this latter case, scaling down takes advantage of the stagger
	% to keep the labels as large as possible.

	% a ballpark W/H aspect ratio for Courier font
	/courWOverH 0.64 def

	/desiredLabelHeight pslTimeBarHeight 6.0 div def
	/desiredCharWidth desiredLabelHeight courWOverH mul def
	/maxLabelChars endTime log ceiling 1 add def
	/constrainedCharWidth ticInterval pslWidthOverTime mul 0.8 mul maxLabelChars div def

	% if
	constrainedCharWidth desiredCharWidth lt
	{
		/boolStagger true def

		% since we're going to stagger, 2X length now available
		/constrainedCharWidth constrainedCharWidth 2.0 mul def

		constrainedCharWidth desiredCharWidth lt
			{ /actualCharWidth constrainedCharWidth def }
			{ /actualCharWidth desiredCharWidth def }
		ifelse
	}
	% else
	{
		/boolStagger false def
		/actualCharWidth desiredCharWidth def
	}
	ifelse

	/timeLabelHeight actualCharWidth courWOverH div def
	%---------------------------------------------------------------------------


	/timeRange endTime beginTime sub def

	/majorTicLineWidth 0.0 def
	/minorTicLineWidth 0.0 def

	/numMinorDiv 10 def

	/str32 32 string def

	xUL yUL width height pslJustifyLT pslLineWidth pslCornerBox

	/majorH height 6 div def
	/minorH majorH 3 div def
	/yMajorMin ymin def
	/yMajorMax ymin majorH add def
	/yMinorMin ymin def
	/yMinorMax ymin minorH add def

	/yLowerTimeLabel yMajorMax height 16 div add 4 add def
	/yHigherTimeLabel yLowerTimeLabel height .15 mul add def
	/yCursorTimeLabel yHigherTimeLabel height .13 mul add def
	/yMarkerTimeLabel yCursorTimeLabel height .13 mul add def

	/xMajorTicInc ticInterval timeRange div width mul def
	/xMinorTicInc xMajorTicInc numMinorDiv div def

	gsave

	%%	clip to {time bar U wave area}--simplifies tic'ing and vertical dashing
	%%	true/false = vertical dashing visible/invisible
	true
	{ xmin pslYMin xmax ymax pslClipRect }
	{ xmin ymin xmax ymax pslClipRect }
	ifelse

	/Courier findfont timeLabelHeight scalefont setfont

	%%	time unit label
	xmin width 2 div add timeUnitLabel stringwidth pop 2 div sub
		ymax height 6 div sub moveto timeUnitLabel show

	%%	x location of leftmost major tic inside timebar
	/xFirstMajorTic firstTicTime beginTime sub timeRange div width mul xmin add def

	%%	x location of major tic to left of timebar--clipped, but helpful to start
	%%	tic'ing here and clip to achieve desired effect
	/xTic xFirstMajorTic xMajorTicInc sub def
	/ticTime firstTicTime ticInterval sub def

	1 1 numMajorTics 1 add {
		/ii exch def

		%%	draw major tic
		yMajorMin yMajorMax xTic majorTicLineWidth pslVLine

		%%  time label vertical stagger control
		ii 2 mod 1 eq
			{ boolStagger
				{ /yTimeLabel yHigherTimeLabel def }
				{ /yTimeLabel yLowerTimeLabel def }
				ifelse
			}
			{ /yTimeLabel yLowerTimeLabel def }
			ifelse

		%%  convert time to radix-10 string rep
        /labelStr ticTime ticksPerUnit div str32 cvs def

		xTic yTimeLabel timeLabelHeight pslJustifyCC labelStr pslDisplayLabel

		/ticTime ticTime ticInterval add def

		%%	draw dashed vertical bar through wave area aligned with major tic
		gsave
		[.25 3] 0 setdash
		pslYMin pslTimeBarBottom xTic 0.0 pslVLine
		grestore

		%%	minor tics between major tics
		numMinorDiv {
			/xTic xTic xMinorTicInc add def
			yMinorMin yMinorMax xTic minorTicLineWidth pslVLine
		} repeat
	} for

	%% Display any markers in the timebar area.

	theMarkers{
		dup /markerTime exch 0 get def
		dup /markerOrCursor exch 1 get def
		dup /labelJustify exch 2 get def
		/markerLabel exch 3 get def

		/markerX markerTime pslBarBeginTime sub pslWidthOverTime  mul pslSigLabelBoxRight add def

		markerOrCursor pslIsCursor eq
		{
			/yPosition yCursorTimeLabel def
			[4] 0 setdash
		}
		{
			/yPosition yMarkerTimeLabel def
		}
		ifelse

		newpath
		markerX yPosition moveto
		markerX pslTimeBarBottom lineto
		stroke

		[] 0 setdash

		%% Need to add Adjustment for markers on right of display
		labelJustify pslJustifyLC eq
			{ markerX 2 add yPosition 2 add timeLabelHeight pslJustifyLC markerLabel pslDisplayLabel}
			{ markerX 2 sub yPosition 2 add timeLabelHeight pslJustifyRC markerLabel pslDisplayLabel}
		ifelse

	} forall

	grestore

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%%
/pslPushDict
{
	%% push a "locals" dict on dict stack
	pslLocalDicts pslLocalDictIdx get begin
	/pslLocalDictIdx pslLocalDictIdx 1 add store
} bind def

%%------------------------------------------------------------------------------
%%
/pslPopDict
{
	%% pop a "locals" dict from dict stack
	end
	/pslLocalDictIdx pslLocalDictIdx 1 sub store
} bind def

%%------------------------------------------------------------------------------
%%  Display the marker bar in the waveform display area, time display handled when
%%  time bar is drawn.
%%
%% markerList pslMarker
/pslMarker
{
	/theMarkers exch def

	theMarkers{

		dup /time exch 0 get def
		/markerOrCursor exch 1 get def

		/timeX time pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

		markerOrCursor pslIsCursor eq
			{ [4] 0 setdash }
		if

		newpath
		timeX	pslTimeBarBottom moveto
		timeX	pslYMin lineto
		stroke

		[] 0 setdash

	} forall

} bind def


%%------------------------------------------------------------------------------
%% yMinStr yMaxStr pslYAxis
/pslYAxis
{
	/yMaxStr exch def
	/yMinStr exch def

	/axisLabelHeight pslLogic0Y pslLogicBaseY sub 4 sub def

	newpath
	pslSigLabelBoxRight pslLogic0Y moveto  
	pslSigLabelBoxRight 8 add pslLogic0Y lineto
	stroke

	newpath
	pslSigLabelBoxRight pslLogic1Y moveto  
	pslSigLabelBoxRight 8 add pslLogic1Y lineto
	stroke

	pslSigLabelBoxRight 2 add pslLogic0Y 2 sub axisLabelHeight sub axisLabelHeight pslJustifyLB yMinStr pslDisplayLabel
	pslSigLabelBoxRight 2 add pslLogic1Y 2 add axisLabelHeight pslJustifyLB yMaxStr pslDisplayLabel

} bind def

%%------------------------------------------------------------------------------
%% y1 y2  time1 time2 pslAnalog
/pslAnalog
{
	pslPushDict

	/time2 exch def
	/time1 exch def
	/y2 exch def
	/y1 exch def

	/time2X time2 pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def
	/time1X time1 pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	/y2Y y2 pslAnalogMinVal sub pslAnalogScale mul pslLogic0Y add def
	/y1Y y1 pslAnalogMinVal sub pslAnalogScale mul pslLogic0Y add def

	newpath
	time1X y1Y moveto
	time2X y1Y lineto
	time2X y2Y lineto
	stroke

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% y1 y2  time1 time2 pslAnalogPt2Pt
/pslAnalogPt2Pt
{
	pslPushDict

	/time2 exch def
	/time1 exch def
	/y2 exch def
	/y1 exch def

	/time2X time2 pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def
	/time1X time1 pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	/y2Y y2 pslAnalogMinVal sub pslAnalogScale mul pslLogic0Y add def
	/y1Y y1 pslAnalogMinVal sub pslAnalogScale mul pslLogic0Y add def

	newpath
	time1X y1Y moveto
	time2X y2Y lineto
	stroke

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% lasttime eventtime pslEvent
/pslEvent
{
	pslPushDict

	/eventtime exch def
	/eventtimeX eventtime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	/lasttime exch def
	/lasttimeX lasttime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

    %% 2 determines size of arrowhead
	/off pslArrowOff 2 mul def

	%% draw the horizontal line from last event to this event.
	lasttimeX eventtimeX pslLogic0Y 0.0 pslHLine

	%%
	newpath
	lasttimeX	pslLogic1Y moveto
	off off neg rlineto
	off 2 mul neg 0 rlineto
	closepath fill
	lasttimeX	pslLogic1Y moveto
	lasttimeX	pslLogic0Y lineto
	stroke

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% lasttime eventtime pslDownArrow
/pslDownArrow
{
	pslPushDict

	/eventtime exch def
	/eventtimeX eventtime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	/lasttime exch def
	/lasttimeX lasttime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

    %% 2 determines size of arrowhead
    %% off = ( WaveHeight / 8 ) * 2 ~= 4 for typical case
	/off pslArrowOff 2 mul def

	%% draw the horizontal line from last event to this event.
	lasttimeX eventtimeX pslLogic0Y 0.0 pslHLine

	%%
	newpath
	%% Start at the y = 0 line
	lasttimeX	pslLogic0Y moveto
	%% move up 2 pixels so we can draw line
	0 2 rmoveto
    %% Draw 2 segments, then fill to make triangle.
	off off rlineto
	off 2 mul neg 0 rlineto
	closepath fill
    %% Draw vertical line
	lasttimeX	pslLogic0Y moveto
	lasttimeX	pslLogic1Y lineto
	stroke

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% lasttime eventtime pslVerticalLine
/pslVerticalLine
{
	pslPushDict

	/eventtime exch def
	/eventtimeX eventtime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	/lasttime exch def
	/lasttimeX lasttime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	%% draw the horizontal line from last event to this event.
	lasttimeX eventtimeX pslLogic0Y 0.0 pslHLine

	%%
	newpath
	lasttimeX	pslLogic0Y moveto
	lasttimeX	pslLogic1Y lineto
	stroke

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% beginTime endTime pslVecChange
/pslVecChange
{
	pslPushDict

	/endTime exch def
	/beginTime exch def

	/beginX beginTime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def
	/endX endTime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	beginX 1.0 add pslLogic0Y endX 1.0 sub pslLogic1Y pslWhite pslFillRectXY

	newpath
	beginX pslLogic1Y moveto endX pslLogic1Y lineto stroke		% top horizontal
	beginX pslLogic0Y moveto endX pslLogic0Y lineto stroke		% bottom horizontal
	beginX pslLogic0Y moveto beginX pslLogic1Y lineto stroke	% begin vertical
	endX pslLogic0Y moveto endX pslLogic1Y lineto stroke		% end vertical

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% fromTime toTime fromY pslZVal
/pslZVal
{
	pslPushDict

	/fromToY exch def
	/toTime exch def
	/fromTime exch def

	/fromX fromTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def
	/toX toTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def

	%% (vertical) line  possible for fromToY to be same as pslLogicZY
	fromToY pslLogicZY fromX pslLineWidth pslVLine

	newpath
	fromX	pslLogicZY moveto
	toX		pslLogicZY lineto
	stroke

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% fromTime toTime pslXVal
/pslXVal
{
	pslPushDict

	/toTime exch def
	/fromTime exch def

	/fromX fromTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def
	/toX toTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def

	newpath
	fromX	pslLogic0Y moveto
	toX		pslLogic0Y lineto
	toX		pslLogic1Y lineto
	fromX	pslLogic1Y lineto
	closepath fill

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% fromTime toTime pslNoData
/pslNoData
{
	pslPushDict

	/toTime exch def
	/fromTime exch def

	/fromX fromTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def
	/toX toTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def

	gsave

	pslUltraLtGray setgray

		newpath
		fromX	pslLogic0Y moveto
		toX		pslLogic0Y lineto
		toX		pslLogic1Y lineto
		fromX	pslLogic1Y lineto
		closepath fill

	%% Paint center white strip through the gray to make NDA obvious
	%% on a strictly B/W PostScript previewer.
	pslWhite setgray

		newpath
		fromX	pslNDAWhiteBottomY	moveto
		toX		pslNDAWhiteBottomY	lineto
		toX		pslNDAWhiteTopY		lineto
		fromX	pslNDAWhiteTopY		lineto
		closepath fill

	grestore

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% xTime yloc 
/pslEventDiamond
{
	pslPushDict
	/yloc exch def
	/xtime exch def

	/toX xtime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def

	pslPopDict


} bind def

%%------------------------------------------------------------------------------
%% xTime yloc 
/pslEventDiamond
{
	pslPushDict
	/yloc exch def
	/xtime exch def

	/toX xtime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def
	/lowY yloc 2 sub def
	/lowX toX 2 sub def

	lowX toX lowY yloc 4 4 pslBlack pslFillDiamond

	pslPopDict
} bind def

%%------------------------------------------------------------------------------
%% xTime yloc 
/pslEventTriangle
{
	pslPushDict
	/yloc exch def
	/xtime exch def

	/toX xtime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def
	/yVal yloc 2 sub def
	/lowX toX 2 sub def

	lowX toX yVal 4 4 pslBlack pslFillTriangle	

	pslPopDict


} bind def

%%------------------------------------------------------------------------------
%% xTime yloc 
/pslEventSquare
{
	pslPushDict
	/yloc exch def
	/xtime exch def

	/toX xtime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add 2 sub def
	/yVal yloc 2 sub def

	toX yVal 4 4 pslBlack pslFillRect

	pslPopDict
} bind def

%%------------------------------------------------------------------------------
%% fromTime toTime fromToY changeToY pslScalarInterval
/pslScalarInterval
{
	pslPushDict

	/changeToY	exch def
	/fromToY	exch def
	/toTime		exch def
	/fromTime	exch def

	/fromX fromTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def
	/toX toTime pslBarBeginTime sub pslWidthOverTime mul pslTimeBarLeft add def

	%% "change-to" (vertical) line
	fromToY changeToY fromX pslLineWidth pslVLine

	%% "from-to" (horizontal) line
	fromX toX changeToY pslLineWidth pslHLine

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% fromTime toTime fromToY pslScalarHLine
/pslScalarHLine
{
	pslPushDict

	/fromToY	exch def
	/toTime		exch def
	/fromTime	exch def

	/fromX fromTime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def
	/toX toTime pslBarBeginTime sub pslWidthOverTime mul pslSigLabelBoxRight add def

	%% "from-to" (horizontal) line
	fromX toX fromToY pslLineWidth pslHLine

	pslPopDict

} bind def

%%------------------------------------------------------------------------------
%%
/pslInfoBoxContents
{
    pslPushDict

    /timeSliceStr2	exch def
    /timeSliceStr1A     exch def
    /timeSliceStr1	exch def
    /signalSliceStr	exch def
    /pageStr		exch def

    /numRows 4 def
    /rowHeight pslInfoBoxHeight 0.9 mul numRows div def

	pslSheetRotate
        { /fontHeightPct 0.8 def }
        { /fontHeightPct 0.5 def }
    ifelse

    /fontHeight rowHeight fontHeightPct mul def
    /halfMargin rowHeight fontHeight sub 2 div def

    /row1Y pslInfoBoxTop rowHeight 1 mul sub halfMargin add def
    /row2Y pslInfoBoxTop rowHeight 2 mul sub halfMargin add def
    /row3Y pslInfoBoxTop rowHeight 3 mul sub halfMargin add def
    /row4Y pslInfoBoxTop rowHeight 4 mul sub halfMargin add def
    /col1X pslInfoBoxLeft pslInfoBoxWidth 0.01 mul add def
    /col2X pslInfoBoxLeft pslInfoBoxWidth 0.25 mul add def
    /col3X pslInfoBoxLeft pslInfoBoxWidth 0.54 mul add def
    /col4X pslInfoBoxLeft pslInfoBoxWidth 0.90 mul add def

    gsave
    /Courier findfont fontHeight scalefont setfont

    col1X row1Y moveto pslProductStr show
    col1X row2Y moveto (Copyright 1993-2000) show
    col1X row3Y moveto (Synopsys, Inc.) show
    col1X row4Y moveto (All Rights Reserved.) show

    col2X row1Y moveto pslUserStr show
    col2X row2Y moveto pslDesignStr show
    col2X row3Y moveto pslProjectStr show
    col2X row4Y moveto pslDateStr show

    col3X row1Y moveto signalSliceStr show
    col4X row1Y moveto pageStr show
    col3X row2Y moveto timeSliceStr2 show
    col3X row3Y moveto timeSliceStr1 show
    col3X row4Y moveto timeSliceStr1A show

    grestore

    pslPopDict

} bind def

%%------------------------------------------------------------------------------
%% job setup

/inch { 72 mul } def

%%	Set up array of "locals" dicts for stack frame emulation--not quite the
%%  same as stack frames, since uniquely named entries accumulate in a given
%%  dictionary, but does provide some name scoping safety with nested procs
%%	(at least to pslLocalDictCnt levels). A somewhat better method would be
%%	to put larger/smaller dicts at lower/higher indices in the array. If you 
%%	get a dictfull error from the PS interpreter, increase pslLocalDictSize.
%%
/pslLocalDictSize 200 def
/pslLocalDictCnt 20 def

% create pslLocalDictCnt dicts of pslLocalDictSize entries each
pslLocalDictCnt { pslLocalDictSize dict } repeat

% create a pslLocalDictCnt element array to hold dicts
pslLocalDictCnt array astore
/pslLocalDicts exch def
/pslLocalDictIdx 0 def

%%	justification constants
%%		L,C,R = Left,Center,Right on x
%%		T,C,B = Top,Center, Bottom on y
%%
%%	LT	CT	RT
%%	LC	CC  RC
%%	LB	CB  RB
%%
/pslJustifyLT 1 def
/pslJustifyCT 2 def
/pslJustifyRT 3 def
/pslJustifyLC 4 def
/pslJustifyCC 5 def
/pslJustifyRC 6 def
/pslJustifyLB 7 def
/pslJustifyCB 8 def
/pslJustifyRB 9 def

%% Cursor/Marker
%%
/pslIsCursor  1 def
/pslIsMarker  2 def

%%	common "colors"
%%
/pslBlack       0.00 def
/pslDkGray      0.25 def
/pslGray        0.50 def
/pslLtGray	    0.75 def
/pslUltraLtGray 0.90 def
/pslWhite       1.00 def

%%EndProlog

%------------------------------------------------------------------------------

/pslProductStr  (Virtual Simulator Environment) def
/pslUserStr    (User    : berndt@elk.routefree.com) def
/pslProjectStr (Project : BB) def
/pslDesignStr  (Design  : PI DMA Bug) def
/pslDateStr    (Date    : Thu May 22 13:59:28 2003) def
/pslSheetRotate true def
/pslBorderWidth 0.425 inch def
/pslLineWidth 1.0 def
/pslXMin pslBorderWidth def
/pslYMin pslBorderWidth def
/pslXMax 11.000000 inch pslBorderWidth sub def
/pslYMax 8.500000 inch pslBorderWidth sub def

/pslWidth pslXMax pslXMin sub def
/pslHeight pslYMax pslYMin sub def

/pslInfoBoxWidth pslWidth def
/pslInfoBoxHeight pslHeight 0.08 mul def
/pslInfoBoxLeft pslXMin def
/pslInfoBoxRight pslXMax def
/pslInfoBoxTop pslYMax def
/pslInfoBoxBottom pslInfoBoxTop pslInfoBoxHeight sub def

/pslSigFileIdBoxPct 0.03 def
/pslSigFileIdBoxWidth pslWidth pslSigFileIdBoxPct mul def
/pslSigFileIdBoxRight pslXMin pslSigFileIdBoxWidth add def

/pslSigLabelBoxPct 0.27 def
/pslSigLabelBoxWidth pslWidth pslSigLabelBoxPct mul def
/pslSigLabelBoxRight pslSigLabelBoxWidth pslSigFileIdBoxRight add def

/pslTimeBarLeft pslSigLabelBoxRight def

/pslTimeBarRight pslXMax def

/pslTimeBarWidth pslTimeBarRight pslTimeBarLeft sub def
/pslTimeBarHeight pslHeight 0.10 mul def
/pslTimeBarTop pslInfoBoxBottom def

/pslTimeBarBottom pslTimeBarTop pslTimeBarHeight sub def

/pslTimePerPage 471983.0 def
/pslWidthOverTime pslTimeBarWidth pslTimePerPage div def

/pslSigDataBoxHeight pslTimeBarBottom pslYMin sub def

/pslLabelDivs 24 def
/pslLabelAreaHeight pslTimeBarBottom pslYMin sub pslLabelDivs div def
/pslLabelHeight pslLabelAreaHeight 0.6 mul def

/pslLogic0Off pslLabelAreaHeight 0.20 mul def
/pslLogic1Off pslLabelAreaHeight 0.80 mul def
/pslLogic01Height pslLogic1Off pslLogic0Off sub def

/pslVecTextHeight pslLogic01Height 0.8 mul def

/pslArrowOff pslLogic01Height 8 div def

/pslTransformCoordinates
{
    8.500000 inch 0.0 inch translate 90.0 rotate
    1.0 1.0 scale
} def


%%------------------------------------------------------------------------------
/pslSigNames1 [
    [ 1 (V1) (vsim.sysclk) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_addr[25:0]) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_addr_inc) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_len[23:0]) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_len_dec) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_len_zero) ]
    [ 1 (V1) (vsim.bb.bcp.pi.aesp_cnt[10:1]) ]
    [ 1 (V1) (vsim.bb.bcp.pi.aesp_cnt_inc) ]
    [ 1 (V1) (vsim.bb.bcp.pi.aesp_cnt_dec) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_fill) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_len[6:0]) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_aesp) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_req) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_request) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_grant) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_cyc) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_cyc_clr) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_start) ]
    [ 1 (V1) (vsim.bb.bcp.pi.dma_last) ]
    [ 1 (V1) (vsim.bb.bcp.pi.bdma_dph) ]
] def

%%------------------------------------------------------------------------------
/pslMarkerList [
    [ 544935600.0 pslIsCursor pslJustifyLC (C1) ]
] def

%%------------------------------------------------------------------------------
%%Page: 1 1

    /pslStartOfPageSave save def

    pslTransformCoordinates

    gsave  % to restore unrestricted clip near end of page

    % clip to interior of edge border
    pslXMin pslYMin pslXMax pslYMax pslClipRect

    % defs reused this page
    /pslBarBeginTime 544935600.0 def
    /pslBarEndTime 545407583.0 def
    /pslLogicBaseY pslTimeBarBottom def

    pslTimeBarLeft pslTimeBarTop pslTimeBarWidth pslTimeBarHeight
        544935600.0 544950000.0 50000.0 10 545400000.0 545407583.0 (Time \(1 ps\)) 1 pslMarkerList pslTimeBar

    (Page : 1 of 1)
    (Signal Slice : 1 of 1; signals 1-20 of 20)
    (Time Slice   : 1 of 1; time [544,935,600, 545,407,583])
    ( )
    (Time Range   : [544,935,600, 545,407,583])
        pslInfoBoxContents

    % vertical separator between labels, waves
    pslYMin pslInfoBoxBottom pslSigLabelBoxRight pslLineWidth pslVLine

    (Group AutoGroup0) pslSigLabelsHeaderBox

    pslSigNames1 pslSigData

    % clip to interior of sig data area
    pslSigLabelBoxRight pslYMin pslXMax pslTimeBarBottom pslClipRect

    % set font for vector value text
    /Courier findfont pslVecTextHeight scalefont setfont

    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 1 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 544936000.0 pslLogic1Y pslLogic1Y pslScalarInterval
    544936000.0 544944000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    544944000.0 544952000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    544952000.0 544960000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    544960000.0 544968000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    544968000.0 544976000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    544976000.0 544984000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    544984000.0 544992000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    544992000.0 545000000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545000000.0 545008000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545008000.0 545016000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545016000.0 545024000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545024000.0 545032000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545032000.0 545040000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545040000.0 545048000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545048000.0 545056000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545056000.0 545064000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545064000.0 545072000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545072000.0 545080000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545080000.0 545088000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545088000.0 545096000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545096000.0 545104000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545104000.0 545112000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545112000.0 545120000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545120000.0 545128000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545128000.0 545136000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545136000.0 545144000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545144000.0 545152000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545152000.0 545160000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545160000.0 545168000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545168000.0 545176000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545176000.0 545184000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545184000.0 545192000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545192000.0 545200000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545200000.0 545208000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545208000.0 545216000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545216000.0 545224000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545224000.0 545232000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545232000.0 545240000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545240000.0 545248000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545248000.0 545256000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545256000.0 545264000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545264000.0 545272000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545272000.0 545280000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545280000.0 545288000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545288000.0 545296000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545296000.0 545304000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545304000.0 545312000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545312000.0 545320000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545320000.0 545328000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545328000.0 545336000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545336000.0 545344000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545344000.0 545352000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545352000.0 545360000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545360000.0 545368000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545368000.0 545376000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545376000.0 545384000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545384000.0 545392000.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545392000.0 545400000.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545400000.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 2 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545168001.0 pslVecChange
    544947220.0 545120210.2 (0000078) pslDVL2
    545168001.0 545344001.0 pslVecChange
    545176801.0 545299030.3 (0000080) pslDVL2
    545344001.0 545407583.0 pslVecChange
    545357706.6 (0000100) pslDVL1
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 3 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545152001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545152001.0 545168001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545168001.0 545328001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545328001.0 545344001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545344001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 4 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545168001.0 pslVecChange
    544947220.0 545125377.5 (00001f) pslDVL2
    545168001.0 545312001.0 pslVecChange
    545175201.0 545273797.5 (000017) pslDVL2
    545312001.0 545328001.0 pslVecChange
    545312250.1 (*0f) pslDVL1
    545328001.0 545344001.0 pslVecChange
    545328250.1 (*07) pslDVL1
    545344001.0 545407583.0 pslVecChange
    545360290.3 (ffffff) pslDVL1
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 5 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545152001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545152001.0 545168001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545168001.0 545296001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545296001.0 545344001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545344001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 6 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545344001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545344001.0 545407583.0 pslLogic0Y pslLogic1Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 7 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545008001.0 pslVecChange
    544939220.0 544988879.2 (000) pslDVL2
    545008001.0 545024001.0 pslVecChange
    545010833.8 (*4) pslDVL1
    545024001.0 545168001.0 pslVecChange
    545031201.0 545145299.3 (008) pslDVL2
    545168001.0 545312001.0 pslVecChange
    545175201.0 545289299.3 (004) pslDVL2
    545312001.0 545328001.0 pslVecChange
    545314833.8 (*0) pslDVL1
    545328001.0 545344001.0 pslVecChange
    545330833.8 (*c) pslDVL1
    545344001.0 545407583.0 pslVecChange
    545347180.1 545388902.2 (3f8) pslDVL2
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 8 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 544992001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    544992001.0 545024001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545024001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 9 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545152001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545152001.0 545168001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545168001.0 545296001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545296001.0 545344001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545344001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 10 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545184001.0 pslLogic1Y pslLogic1Y pslScalarInterval
    545184001.0 545360001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545360001.0 545407583.0 pslLogic0Y pslLogic1Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 11 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545184001.0 pslVecChange
    544948020.0 545161246.5 (07) pslDVL2
    545184001.0 545200001.0 pslVecChange
    545186833.8 (7f) pslDVL1
    545200001.0 545328001.0 pslVecChange
    545206401.0 545311266.5 (17) pslDVL2
    545328001.0 545344001.0 pslVecChange
    545330833.8 (0f) pslDVL1
    545344001.0 545360001.0 pslVecChange
    545346833.8 (07) pslDVL1
    545360001.0 545407583.0 pslVecChange
    545362380.1 545394869.4 (7f) pslDVL2
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 12 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545024001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545024001.0 545200001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545200001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 13 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545024001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545024001.0 545040001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545040001.0 545168001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545168001.0 545184001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545184001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 14 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545040001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545040001.0 545088001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545088001.0 545184001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545184001.0 545232001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545232001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 15 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545072001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545072001.0 545088001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545088001.0 545216001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545216001.0 545232001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545232001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 16 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545040001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545040001.0 545168001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545168001.0 545184001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545184001.0 545344001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545344001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 17 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545152001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545152001.0 545168001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545168001.0 545328001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545328001.0 545360001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545360001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 18 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545136001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545136001.0 545152001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545152001.0 545280001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545280001.0 545296001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545296001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 19 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545136001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545136001.0 545152001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545152001.0 545312001.0 pslLogic1Y pslLogic0Y pslScalarInterval
    545312001.0 545328001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545328001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval
    % defs reused this sig
    /pslLogic1Y pslLogicBaseY pslLogic0Off sub def
    /pslLogicBaseY pslTimeBarBottom 20 pslLabelAreaHeight mul sub def
    /pslLogic0Y pslLogicBaseY pslLogic0Off add def
    /pslLogicHeight pslLogic1Y pslLogic0Y sub def
    /pslLogicMid pslLogicHeight 2 div def
    /pslTextBaseY pslLogic0Y pslLogicMid pslVecTextHeight 0.3125 mul sub add def
    /pslLogicXY pslLogic0Y pslLogicMid add def
    /pslLogicZY pslLogic0Y pslLogicMid add def

    /pslNDAWhiteTopY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul sub add def
    /pslNDAWhiteBottomY pslLogic0Y pslLogicMid pslLogicHeight 0.125 mul add add def
    544935600.0 545296001.0 pslLogic0Y pslLogic0Y pslScalarInterval
    545296001.0 545328001.0 pslLogic0Y pslLogic1Y pslScalarInterval
    545328001.0 545407583.0 pslLogic1Y pslLogic0Y pslScalarInterval

    pslMarkerList pslMarker

    grestore  % restores unrestricted clip

    % draw outside edge border
    pslXMin pslYMin pslWidth pslHeight pslLineWidth pslOutlineRect

    showpage

    pslStartOfPageSave restore

%%------------------------------------------------------------------------------
%%Trailer

pslStartOfJobSave restore

%%DocumentFonts: Courier
%%Pages: 1
%%EOF