WBSRAMSHS256W64C3B8.v
92.7 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
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
//VERSION: 2.1.0 DATE:02/04/08 RAM TYPE: 1port Byte Write RAM
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
`suppress_faults
`enable_portfaults
`endif
module WBSRAMSHS256W64C3B8 (
DO63,
DO62,
DO61,
DO60,
DO59,
DO58,
DO57,
DO56,
DO55,
DO54,
DO53,
DO52,
DO51,
DO50,
DO49,
DO48,
DO47,
DO46,
DO45,
DO44,
DO43,
DO42,
DO41,
DO40,
DO39,
DO38,
DO37,
DO36,
DO35,
DO34,
DO33,
DO32,
DO31,
DO30,
DO29,
DO28,
DO27,
DO26,
DO25,
DO24,
DO23,
DO22,
DO21,
DO20,
DO19,
DO18,
DO17,
DO16,
DO15,
DO14,
DO13,
DO12,
DO11,
DO10,
DO9,
DO8,
DO7,
DO6,
DO5,
DO4,
DO3,
DO2,
DO1,
DO0,
DI63,
DI62,
DI61,
DI60,
DI59,
DI58,
DI57,
DI56,
DI55,
DI54,
DI53,
DI52,
DI51,
DI50,
DI49,
DI48,
DI47,
DI46,
DI45,
DI44,
DI43,
DI42,
DI41,
DI40,
DI39,
DI38,
DI37,
DI36,
DI35,
DI34,
DI33,
DI32,
DI31,
DI30,
DI29,
DI28,
DI27,
DI26,
DI25,
DI24,
DI23,
DI22,
DI21,
DI20,
DI19,
DI18,
DI17,
DI16,
DI15,
DI14,
DI13,
DI12,
DI11,
DI10,
DI9,
DI8,
DI7,
DI6,
DI5,
DI4,
DI3,
DI2,
DI1,
DI0,
A7,
A6,
A5,
A4,
A3,
A2,
A1,
A0,
WEB7,
WEB6,
WEB5,
WEB4,
WEB3,
WEB2,
WEB1,
WEB0,
CSB,
BE,
TBE,
TEST,
BUB
);
input DI0 ;
input DI1 ;
input DI2 ;
input DI3 ;
input DI4 ;
input DI5 ;
input DI6 ;
input DI7 ;
input DI8 ;
input DI9 ;
input DI10 ;
input DI11 ;
input DI12 ;
input DI13 ;
input DI14 ;
input DI15 ;
input DI16 ;
input DI17 ;
input DI18 ;
input DI19 ;
input DI20 ;
input DI21 ;
input DI22 ;
input DI23 ;
input DI24 ;
input DI25 ;
input DI26 ;
input DI27 ;
input DI28 ;
input DI29 ;
input DI30 ;
input DI31 ;
input DI32 ;
input DI33 ;
input DI34 ;
input DI35 ;
input DI36 ;
input DI37 ;
input DI38 ;
input DI39 ;
input DI40 ;
input DI41 ;
input DI42 ;
input DI43 ;
input DI44 ;
input DI45 ;
input DI46 ;
input DI47 ;
input DI48 ;
input DI49 ;
input DI50 ;
input DI51 ;
input DI52 ;
input DI53 ;
input DI54 ;
input DI55 ;
input DI56 ;
input DI57 ;
input DI58 ;
input DI59 ;
input DI60 ;
input DI61 ;
input DI62 ;
input DI63 ;
input A0 ;
input A1 ;
input A2 ;
input A3 ;
input A4 ;
input A5 ;
input A6 ;
input A7 ;
input WEB7 ;
input WEB6 ;
input WEB5 ;
input WEB4 ;
input WEB3 ;
input WEB2 ;
input WEB1 ;
input WEB0 ;
input CSB ;
input BE ;
input TBE ;
input TEST ;
input BUB ;
output DO0 ;
output DO1 ;
output DO2 ;
output DO3 ;
output DO4 ;
output DO5 ;
output DO6 ;
output DO7 ;
output DO8 ;
output DO9 ;
output DO10 ;
output DO11 ;
output DO12 ;
output DO13 ;
output DO14 ;
output DO15 ;
output DO16 ;
output DO17 ;
output DO18 ;
output DO19 ;
output DO20 ;
output DO21 ;
output DO22 ;
output DO23 ;
output DO24 ;
output DO25 ;
output DO26 ;
output DO27 ;
output DO28 ;
output DO29 ;
output DO30 ;
output DO31 ;
output DO32 ;
output DO33 ;
output DO34 ;
output DO35 ;
output DO36 ;
output DO37 ;
output DO38 ;
output DO39 ;
output DO40 ;
output DO41 ;
output DO42 ;
output DO43 ;
output DO44 ;
output DO45 ;
output DO46 ;
output DO47 ;
output DO48 ;
output DO49 ;
output DO50 ;
output DO51 ;
output DO52 ;
output DO53 ;
output DO54 ;
output DO55 ;
output DO56 ;
output DO57 ;
output DO58 ;
output DO59 ;
output DO60 ;
output DO61 ;
output DO62 ;
output DO63 ;
parameter BIT=64;
parameter WORD=256;
parameter ADD_BIT=8;
parameter tOH= 414; // DO Hold
`ifdef NEC_RTL_SIM
parameter tACC_r = 1556; // Dummy value in Read mode
parameter tACC_w = 1091; // Dummy value in Read mode
`endif // NEC_RTL_SIM
wire[BIT-1:0] DI;
wire[ADD_BIT-1:0] A;
wire[BIT/8-1:0] WEB;
/* -------------------------- */
reg [BIT-1:0] DO;
reg [BIT-1:0] tmp_DO;
reg [ADD_BIT-1:0] address;
reg csb, pre_BE,pre_TBE;
parameter all_X={BIT{1'bx}};
reg[BIT-1:0] memory[0:WORD-1];
// address "X"
reg[ADD_BIT-1:0] x_add_num[0:ADD_BIT];
integer i,x_count;
reg [BIT-1:0] tmp_data,tmp_dout,old_DO;
reg [BIT-1:0] data;
integer j;
reg [BIT/8-1:0] webchk;
/* -------------------------- */
`ifdef NEC_RTL_SIM
initial begin
PrintRTLMsg;
end
`endif
// ------------------------------------- specify check flg
wire normal_mode;
wire test_mode;
`ifdef NEC_RTL_SIM
`else
reg notifier_w;
reg notifier_a;
reg notifier_wr;
reg notifier_web0;
reg notifier_web1;
reg notifier_web2;
reg notifier_web3;
reg notifier_web4;
reg notifier_web5;
reg notifier_web6;
reg notifier_web7;
reg notifier_period;
`endif
// ------------------------------------- dummy buffer
buf ( _DI0, DI0 );
buf ( _DI1, DI1 );
buf ( _DI2, DI2 );
buf ( _DI3, DI3 );
buf ( _DI4, DI4 );
buf ( _DI5, DI5 );
buf ( _DI6, DI6 );
buf ( _DI7, DI7 );
buf ( _DI8, DI8 );
buf ( _DI9, DI9 );
buf ( _DI10, DI10 );
buf ( _DI11, DI11 );
buf ( _DI12, DI12 );
buf ( _DI13, DI13 );
buf ( _DI14, DI14 );
buf ( _DI15, DI15 );
buf ( _DI16, DI16 );
buf ( _DI17, DI17 );
buf ( _DI18, DI18 );
buf ( _DI19, DI19 );
buf ( _DI20, DI20 );
buf ( _DI21, DI21 );
buf ( _DI22, DI22 );
buf ( _DI23, DI23 );
buf ( _DI24, DI24 );
buf ( _DI25, DI25 );
buf ( _DI26, DI26 );
buf ( _DI27, DI27 );
buf ( _DI28, DI28 );
buf ( _DI29, DI29 );
buf ( _DI30, DI30 );
buf ( _DI31, DI31 );
buf ( _DI32, DI32 );
buf ( _DI33, DI33 );
buf ( _DI34, DI34 );
buf ( _DI35, DI35 );
buf ( _DI36, DI36 );
buf ( _DI37, DI37 );
buf ( _DI38, DI38 );
buf ( _DI39, DI39 );
buf ( _DI40, DI40 );
buf ( _DI41, DI41 );
buf ( _DI42, DI42 );
buf ( _DI43, DI43 );
buf ( _DI44, DI44 );
buf ( _DI45, DI45 );
buf ( _DI46, DI46 );
buf ( _DI47, DI47 );
buf ( _DI48, DI48 );
buf ( _DI49, DI49 );
buf ( _DI50, DI50 );
buf ( _DI51, DI51 );
buf ( _DI52, DI52 );
buf ( _DI53, DI53 );
buf ( _DI54, DI54 );
buf ( _DI55, DI55 );
buf ( _DI56, DI56 );
buf ( _DI57, DI57 );
buf ( _DI58, DI58 );
buf ( _DI59, DI59 );
buf ( _DI60, DI60 );
buf ( _DI61, DI61 );
buf ( _DI62, DI62 );
buf ( _DI63, DI63 );
buf ( _A0, A0 );
buf ( _A1, A1 );
buf ( _A2, A2 );
buf ( _A3, A3 );
buf ( _A4, A4 );
buf ( _A5, A5 );
buf ( _A6, A6 );
buf ( _A7, A7 );
buf ( _WEB0, WEB0 );
buf ( _WEB1, WEB1 );
buf ( _WEB2, WEB2 );
buf ( _WEB3, WEB3 );
buf ( _WEB4, WEB4 );
buf ( _WEB5, WEB5 );
buf ( _WEB6, WEB6 );
buf ( _WEB7, WEB7 );
buf ( _CSB, CSB );
buf ( _BE, BE );
buf ( _TBE, TBE );
buf ( _TEST, TEST );
buf ( _BUB, BUB );
buf ( DI[0], _DI0 );
buf ( DI[1], _DI1 );
buf ( DI[2], _DI2 );
buf ( DI[3], _DI3 );
buf ( DI[4], _DI4 );
buf ( DI[5], _DI5 );
buf ( DI[6], _DI6 );
buf ( DI[7], _DI7 );
buf ( DI[8], _DI8 );
buf ( DI[9], _DI9 );
buf ( DI[10], _DI10 );
buf ( DI[11], _DI11 );
buf ( DI[12], _DI12 );
buf ( DI[13], _DI13 );
buf ( DI[14], _DI14 );
buf ( DI[15], _DI15 );
buf ( DI[16], _DI16 );
buf ( DI[17], _DI17 );
buf ( DI[18], _DI18 );
buf ( DI[19], _DI19 );
buf ( DI[20], _DI20 );
buf ( DI[21], _DI21 );
buf ( DI[22], _DI22 );
buf ( DI[23], _DI23 );
buf ( DI[24], _DI24 );
buf ( DI[25], _DI25 );
buf ( DI[26], _DI26 );
buf ( DI[27], _DI27 );
buf ( DI[28], _DI28 );
buf ( DI[29], _DI29 );
buf ( DI[30], _DI30 );
buf ( DI[31], _DI31 );
buf ( DI[32], _DI32 );
buf ( DI[33], _DI33 );
buf ( DI[34], _DI34 );
buf ( DI[35], _DI35 );
buf ( DI[36], _DI36 );
buf ( DI[37], _DI37 );
buf ( DI[38], _DI38 );
buf ( DI[39], _DI39 );
buf ( DI[40], _DI40 );
buf ( DI[41], _DI41 );
buf ( DI[42], _DI42 );
buf ( DI[43], _DI43 );
buf ( DI[44], _DI44 );
buf ( DI[45], _DI45 );
buf ( DI[46], _DI46 );
buf ( DI[47], _DI47 );
buf ( DI[48], _DI48 );
buf ( DI[49], _DI49 );
buf ( DI[50], _DI50 );
buf ( DI[51], _DI51 );
buf ( DI[52], _DI52 );
buf ( DI[53], _DI53 );
buf ( DI[54], _DI54 );
buf ( DI[55], _DI55 );
buf ( DI[56], _DI56 );
buf ( DI[57], _DI57 );
buf ( DI[58], _DI58 );
buf ( DI[59], _DI59 );
buf ( DI[60], _DI60 );
buf ( DI[61], _DI61 );
buf ( DI[62], _DI62 );
buf ( DI[63], _DI63 );
buf ( A[0], _A0 );
buf ( A[1], _A1 );
buf ( A[2], _A2 );
buf ( A[3], _A3 );
buf ( A[4], _A4 );
buf ( A[5], _A5 );
buf ( A[6], _A6 );
buf ( A[7], _A7 );
buf ( WEB[0], _WEB0 );
buf ( WEB[1], _WEB1 );
buf ( WEB[2], _WEB2 );
buf ( WEB[3], _WEB3 );
buf ( WEB[4], _WEB4 );
buf ( WEB[5], _WEB5 );
buf ( WEB[6], _WEB6 );
buf ( WEB[7], _WEB7 );
wire [BIT-1:0] dmy_DO;
assign dmy_DO=DO;
nmos ( DO0, dmy_DO[0], 1'b1 );
nmos ( DO1, dmy_DO[1], 1'b1 );
nmos ( DO2, dmy_DO[2], 1'b1 );
nmos ( DO3, dmy_DO[3], 1'b1 );
nmos ( DO4, dmy_DO[4], 1'b1 );
nmos ( DO5, dmy_DO[5], 1'b1 );
nmos ( DO6, dmy_DO[6], 1'b1 );
nmos ( DO7, dmy_DO[7], 1'b1 );
nmos ( DO8, dmy_DO[8], 1'b1 );
nmos ( DO9, dmy_DO[9], 1'b1 );
nmos ( DO10, dmy_DO[10], 1'b1 );
nmos ( DO11, dmy_DO[11], 1'b1 );
nmos ( DO12, dmy_DO[12], 1'b1 );
nmos ( DO13, dmy_DO[13], 1'b1 );
nmos ( DO14, dmy_DO[14], 1'b1 );
nmos ( DO15, dmy_DO[15], 1'b1 );
nmos ( DO16, dmy_DO[16], 1'b1 );
nmos ( DO17, dmy_DO[17], 1'b1 );
nmos ( DO18, dmy_DO[18], 1'b1 );
nmos ( DO19, dmy_DO[19], 1'b1 );
nmos ( DO20, dmy_DO[20], 1'b1 );
nmos ( DO21, dmy_DO[21], 1'b1 );
nmos ( DO22, dmy_DO[22], 1'b1 );
nmos ( DO23, dmy_DO[23], 1'b1 );
nmos ( DO24, dmy_DO[24], 1'b1 );
nmos ( DO25, dmy_DO[25], 1'b1 );
nmos ( DO26, dmy_DO[26], 1'b1 );
nmos ( DO27, dmy_DO[27], 1'b1 );
nmos ( DO28, dmy_DO[28], 1'b1 );
nmos ( DO29, dmy_DO[29], 1'b1 );
nmos ( DO30, dmy_DO[30], 1'b1 );
nmos ( DO31, dmy_DO[31], 1'b1 );
nmos ( DO32, dmy_DO[32], 1'b1 );
nmos ( DO33, dmy_DO[33], 1'b1 );
nmos ( DO34, dmy_DO[34], 1'b1 );
nmos ( DO35, dmy_DO[35], 1'b1 );
nmos ( DO36, dmy_DO[36], 1'b1 );
nmos ( DO37, dmy_DO[37], 1'b1 );
nmos ( DO38, dmy_DO[38], 1'b1 );
nmos ( DO39, dmy_DO[39], 1'b1 );
nmos ( DO40, dmy_DO[40], 1'b1 );
nmos ( DO41, dmy_DO[41], 1'b1 );
nmos ( DO42, dmy_DO[42], 1'b1 );
nmos ( DO43, dmy_DO[43], 1'b1 );
nmos ( DO44, dmy_DO[44], 1'b1 );
nmos ( DO45, dmy_DO[45], 1'b1 );
nmos ( DO46, dmy_DO[46], 1'b1 );
nmos ( DO47, dmy_DO[47], 1'b1 );
nmos ( DO48, dmy_DO[48], 1'b1 );
nmos ( DO49, dmy_DO[49], 1'b1 );
nmos ( DO50, dmy_DO[50], 1'b1 );
nmos ( DO51, dmy_DO[51], 1'b1 );
nmos ( DO52, dmy_DO[52], 1'b1 );
nmos ( DO53, dmy_DO[53], 1'b1 );
nmos ( DO54, dmy_DO[54], 1'b1 );
nmos ( DO55, dmy_DO[55], 1'b1 );
nmos ( DO56, dmy_DO[56], 1'b1 );
nmos ( DO57, dmy_DO[57], 1'b1 );
nmos ( DO58, dmy_DO[58], 1'b1 );
nmos ( DO59, dmy_DO[59], 1'b1 );
nmos ( DO60, dmy_DO[60], 1'b1 );
nmos ( DO61, dmy_DO[61], 1'b1 );
nmos ( DO62, dmy_DO[62], 1'b1 );
nmos ( DO63, dmy_DO[63], 1'b1 );
and(writepin,
_WEB0,
_WEB1,
_WEB2,
_WEB3,
_WEB4,
_WEB5,
_WEB6,
_WEB7);
/* ----------------------- specify */
assign normal_mode=((_BUB!==0) && (_TEST!==1));
assign test_mode=((_BUB!==0) && (_TEST!==0));
`ifdef NEC_RTL_SIM
`else
wire _check_n1;
wire _check_t1;
wire _check_n2web0;
wire _check_n2web1;
wire _check_n2web2;
wire _check_n2web3;
wire _check_n2web4;
wire _check_n2web5;
wire _check_n2web6;
wire _check_n2web7;
wire _check_t2web0;
wire _check_t2web1;
wire _check_t2web2;
wire _check_t2web3;
wire _check_t2web4;
wire _check_t2web5;
wire _check_t2web6;
wire _check_t2web7;
wire _check_n3;
wire _check_t3;
wire _check_bubn;
wire _check_bubt;
wire _check_test;
wire _check_periodn;
wire _check_periodt;
`endif
buf #1 (pre_csb,csb);
`ifdef NEC_RTL_SIM
`else
assign _check_n1=((_CSB!==1'b1) && (normal_mode==1));
assign _check_t1=((_CSB!==1'b1) && (test_mode==1));
assign _check_n2web0=((_CSB!==1'b1) && (_WEB0!==1'b1) && (normal_mode==1));
assign _check_n2web1=((_CSB!==1'b1) && (_WEB1!==1'b1) && (normal_mode==1));
assign _check_n2web2=((_CSB!==1'b1) && (_WEB2!==1'b1) && (normal_mode==1));
assign _check_n2web3=((_CSB!==1'b1) && (_WEB3!==1'b1) && (normal_mode==1));
assign _check_n2web4=((_CSB!==1'b1) && (_WEB4!==1'b1) && (normal_mode==1));
assign _check_n2web5=((_CSB!==1'b1) && (_WEB5!==1'b1) && (normal_mode==1));
assign _check_n2web6=((_CSB!==1'b1) && (_WEB6!==1'b1) && (normal_mode==1));
assign _check_n2web7=((_CSB!==1'b1) && (_WEB7!==1'b1) && (normal_mode==1));
assign _check_t2web0=((_CSB!==1'b1) && (_WEB0!==1'b1) && (test_mode==1));
assign _check_t2web1=((_CSB!==1'b1) && (_WEB1!==1'b1) && (test_mode==1));
assign _check_t2web2=((_CSB!==1'b1) && (_WEB2!==1'b1) && (test_mode==1));
assign _check_t2web3=((_CSB!==1'b1) && (_WEB3!==1'b1) && (test_mode==1));
assign _check_t2web4=((_CSB!==1'b1) && (_WEB4!==1'b1) && (test_mode==1));
assign _check_t2web5=((_CSB!==1'b1) && (_WEB5!==1'b1) && (test_mode==1));
assign _check_t2web6=((_CSB!==1'b1) && (_WEB6!==1'b1) && (test_mode==1));
assign _check_t2web7=((_CSB!==1'b1) && (_WEB7!==1'b1) && (test_mode==1));
assign _check_n3=((normal_mode==1));
assign _check_t3=((test_mode==1));
assign _check_bubn=((_CSB!==1'b1) && (_TEST!==1'b1));
assign _check_bubt=((_CSB!==1'b1) && (_TEST!==1'b0));
assign _check_test=((_CSB!==1'b1) && (_BUB!==1'b0));
assign _check_periodn=((normal_mode==1));
assign _check_periodt=((test_mode==1));
`endif
`ifdef NEC_RTL_SIM
`else
specify
specparam DMY_SPC=1:1:1;
$setup ( posedge DI0, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI1, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI2, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI3, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI4, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI5, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI6, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI7, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( posedge DI8, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI9, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI10, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI11, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI12, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI13, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI14, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI15, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( posedge DI16, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI17, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI18, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI19, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI20, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI21, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI22, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI23, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( posedge DI24, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI25, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI26, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI27, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI28, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI29, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI30, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI31, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( posedge DI32, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI33, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI34, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI35, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI36, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI37, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI38, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI39, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( posedge DI40, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI41, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI42, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI43, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI44, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI45, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI46, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI47, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( posedge DI48, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI49, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI50, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI51, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI52, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI53, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI54, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI55, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( posedge DI56, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI57, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI58, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI59, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI60, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI61, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI62, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( posedge DI63, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI0, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI1, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI2, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI3, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI4, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI5, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI6, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI7, posedge BE &&& _check_n2web0, DMY_SPC, notifier_w );
$setup ( negedge DI8, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI9, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI10, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI11, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI12, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI13, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI14, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI15, posedge BE &&& _check_n2web1, DMY_SPC, notifier_w );
$setup ( negedge DI16, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI17, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI18, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI19, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI20, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI21, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI22, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI23, posedge BE &&& _check_n2web2, DMY_SPC, notifier_w );
$setup ( negedge DI24, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI25, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI26, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI27, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI28, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI29, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI30, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI31, posedge BE &&& _check_n2web3, DMY_SPC, notifier_w );
$setup ( negedge DI32, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI33, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI34, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI35, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI36, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI37, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI38, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI39, posedge BE &&& _check_n2web4, DMY_SPC, notifier_w );
$setup ( negedge DI40, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI41, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI42, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI43, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI44, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI45, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI46, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI47, posedge BE &&& _check_n2web5, DMY_SPC, notifier_w );
$setup ( negedge DI48, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI49, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI50, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI51, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI52, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI53, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI54, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI55, posedge BE &&& _check_n2web6, DMY_SPC, notifier_w );
$setup ( negedge DI56, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI57, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI58, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI59, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI60, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI61, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI62, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$setup ( negedge DI63, posedge BE &&& _check_n2web7, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI0, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI1, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI2, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI3, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI4, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI5, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI6, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, posedge DI7, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI8, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI9, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI10, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI11, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI12, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI13, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI14, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, posedge DI15, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI16, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI17, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI18, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI19, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI20, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI21, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI22, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, posedge DI23, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI24, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI25, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI26, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI27, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI28, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI29, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI30, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, posedge DI31, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI32, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI33, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI34, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI35, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI36, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI37, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI38, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, posedge DI39, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI40, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI41, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI42, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI43, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI44, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI45, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI46, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, posedge DI47, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI48, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI49, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI50, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI51, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI52, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI53, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI54, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, posedge DI55, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI56, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI57, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI58, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI59, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI60, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI61, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI62, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, posedge DI63, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI0, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI1, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI2, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI3, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI4, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI5, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI6, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web0, negedge DI7, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI8, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI9, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI10, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI11, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI12, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI13, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI14, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web1, negedge DI15, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI16, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI17, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI18, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI19, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI20, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI21, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI22, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web2, negedge DI23, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI24, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI25, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI26, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI27, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI28, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI29, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI30, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web3, negedge DI31, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI32, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI33, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI34, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI35, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI36, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI37, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI38, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web4, negedge DI39, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI40, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI41, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI42, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI43, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI44, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI45, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI46, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web5, negedge DI47, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI48, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI49, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI50, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI51, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI52, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI53, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI54, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web6, negedge DI55, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI56, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI57, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI58, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI59, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI60, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI61, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI62, DMY_SPC, notifier_w );
$hold ( posedge BE &&& _check_n2web7, negedge DI63, DMY_SPC, notifier_w );
$setup ( posedge DI0, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI1, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI2, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI3, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI4, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI5, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI6, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI7, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( posedge DI8, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI9, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI10, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI11, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI12, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI13, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI14, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI15, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( posedge DI16, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI17, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI18, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI19, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI20, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI21, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI22, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI23, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( posedge DI24, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI25, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI26, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI27, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI28, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI29, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI30, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI31, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( posedge DI32, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI33, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI34, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI35, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI36, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI37, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI38, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI39, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( posedge DI40, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI41, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI42, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI43, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI44, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI45, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI46, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI47, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( posedge DI48, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI49, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI50, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI51, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI52, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI53, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI54, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI55, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( posedge DI56, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI57, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI58, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI59, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI60, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI61, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI62, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( posedge DI63, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI0, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI1, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI2, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI3, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI4, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI5, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI6, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI7, posedge TBE &&& _check_t2web0, DMY_SPC, notifier_w );
$setup ( negedge DI8, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI9, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI10, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI11, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI12, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI13, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI14, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI15, posedge TBE &&& _check_t2web1, DMY_SPC, notifier_w );
$setup ( negedge DI16, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI17, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI18, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI19, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI20, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI21, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI22, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI23, posedge TBE &&& _check_t2web2, DMY_SPC, notifier_w );
$setup ( negedge DI24, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI25, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI26, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI27, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI28, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI29, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI30, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI31, posedge TBE &&& _check_t2web3, DMY_SPC, notifier_w );
$setup ( negedge DI32, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI33, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI34, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI35, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI36, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI37, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI38, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI39, posedge TBE &&& _check_t2web4, DMY_SPC, notifier_w );
$setup ( negedge DI40, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI41, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI42, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI43, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI44, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI45, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI46, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI47, posedge TBE &&& _check_t2web5, DMY_SPC, notifier_w );
$setup ( negedge DI48, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI49, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI50, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI51, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI52, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI53, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI54, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI55, posedge TBE &&& _check_t2web6, DMY_SPC, notifier_w );
$setup ( negedge DI56, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI57, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI58, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI59, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI60, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI61, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI62, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$setup ( negedge DI63, posedge TBE &&& _check_t2web7, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI0, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI1, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI2, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI3, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI4, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI5, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI6, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, posedge DI7, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI8, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI9, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI10, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI11, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI12, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI13, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI14, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, posedge DI15, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI16, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI17, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI18, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI19, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI20, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI21, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI22, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, posedge DI23, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI24, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI25, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI26, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI27, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI28, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI29, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI30, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, posedge DI31, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI32, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI33, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI34, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI35, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI36, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI37, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI38, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, posedge DI39, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI40, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI41, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI42, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI43, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI44, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI45, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI46, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, posedge DI47, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI48, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI49, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI50, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI51, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI52, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI53, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI54, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, posedge DI55, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI56, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI57, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI58, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI59, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI60, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI61, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI62, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, posedge DI63, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI0, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI1, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI2, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI3, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI4, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI5, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI6, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web0, negedge DI7, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI8, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI9, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI10, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI11, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI12, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI13, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI14, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web1, negedge DI15, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI16, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI17, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI18, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI19, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI20, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI21, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI22, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web2, negedge DI23, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI24, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI25, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI26, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI27, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI28, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI29, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI30, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web3, negedge DI31, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI32, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI33, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI34, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI35, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI36, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI37, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI38, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web4, negedge DI39, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI40, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI41, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI42, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI43, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI44, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI45, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI46, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web5, negedge DI47, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI48, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI49, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI50, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI51, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI52, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI53, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI54, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web6, negedge DI55, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI56, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI57, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI58, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI59, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI60, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI61, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI62, DMY_SPC, notifier_w );
$hold ( posedge TBE &&& _check_t2web7, negedge DI63, DMY_SPC, notifier_w );
$setup ( posedge A0, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A1, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A2, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A3, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A4, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A5, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A6, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( posedge A7, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A0, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A1, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A2, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A3, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A4, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A5, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A6, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$setup ( negedge A7, posedge BE &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A0, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A1, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A2, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A3, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A4, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A5, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A6, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, posedge A7, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A0, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A1, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A2, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A3, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A4, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A5, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A6, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n1, negedge A7, DMY_SPC, notifier_a );
$setup ( posedge A0, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A1, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A2, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A3, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A4, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A5, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A6, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge A7, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A0, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A1, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A2, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A3, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A4, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A5, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A6, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$setup ( negedge A7, posedge TBE &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A0, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A1, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A2, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A3, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A4, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A5, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A6, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, posedge A7, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A0, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A1, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A2, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A3, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A4, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A5, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A6, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t1, negedge A7, DMY_SPC, notifier_a );
$setup ( posedge WEB0, posedge BE &&& _check_n1, DMY_SPC, notifier_web0 );
$setup ( posedge WEB1, posedge BE &&& _check_n1, DMY_SPC, notifier_web1 );
$setup ( posedge WEB2, posedge BE &&& _check_n1, DMY_SPC, notifier_web2 );
$setup ( posedge WEB3, posedge BE &&& _check_n1, DMY_SPC, notifier_web3 );
$setup ( posedge WEB4, posedge BE &&& _check_n1, DMY_SPC, notifier_web4 );
$setup ( posedge WEB5, posedge BE &&& _check_n1, DMY_SPC, notifier_web5 );
$setup ( posedge WEB6, posedge BE &&& _check_n1, DMY_SPC, notifier_web6 );
$setup ( posedge WEB7, posedge BE &&& _check_n1, DMY_SPC, notifier_web7 );
$setup ( negedge WEB0, posedge BE &&& _check_n1, DMY_SPC, notifier_web0 );
$setup ( negedge WEB1, posedge BE &&& _check_n1, DMY_SPC, notifier_web1 );
$setup ( negedge WEB2, posedge BE &&& _check_n1, DMY_SPC, notifier_web2 );
$setup ( negedge WEB3, posedge BE &&& _check_n1, DMY_SPC, notifier_web3 );
$setup ( negedge WEB4, posedge BE &&& _check_n1, DMY_SPC, notifier_web4 );
$setup ( negedge WEB5, posedge BE &&& _check_n1, DMY_SPC, notifier_web5 );
$setup ( negedge WEB6, posedge BE &&& _check_n1, DMY_SPC, notifier_web6 );
$setup ( negedge WEB7, posedge BE &&& _check_n1, DMY_SPC, notifier_web7 );
$hold ( posedge BE &&& _check_n1, posedge WEB0, DMY_SPC, notifier_web0 );
$hold ( posedge BE &&& _check_n1, posedge WEB1, DMY_SPC, notifier_web1 );
$hold ( posedge BE &&& _check_n1, posedge WEB2, DMY_SPC, notifier_web2 );
$hold ( posedge BE &&& _check_n1, posedge WEB3, DMY_SPC, notifier_web3 );
$hold ( posedge BE &&& _check_n1, posedge WEB4, DMY_SPC, notifier_web4 );
$hold ( posedge BE &&& _check_n1, posedge WEB5, DMY_SPC, notifier_web5 );
$hold ( posedge BE &&& _check_n1, posedge WEB6, DMY_SPC, notifier_web6 );
$hold ( posedge BE &&& _check_n1, posedge WEB7, DMY_SPC, notifier_web7 );
$hold ( posedge BE &&& _check_n1, negedge WEB0, DMY_SPC, notifier_web0 );
$hold ( posedge BE &&& _check_n1, negedge WEB1, DMY_SPC, notifier_web1 );
$hold ( posedge BE &&& _check_n1, negedge WEB2, DMY_SPC, notifier_web2 );
$hold ( posedge BE &&& _check_n1, negedge WEB3, DMY_SPC, notifier_web3 );
$hold ( posedge BE &&& _check_n1, negedge WEB4, DMY_SPC, notifier_web4 );
$hold ( posedge BE &&& _check_n1, negedge WEB5, DMY_SPC, notifier_web5 );
$hold ( posedge BE &&& _check_n1, negedge WEB6, DMY_SPC, notifier_web6 );
$hold ( posedge BE &&& _check_n1, negedge WEB7, DMY_SPC, notifier_web7 );
$setup ( posedge WEB0, posedge TBE &&& _check_t1, DMY_SPC, notifier_web0 );
$setup ( posedge WEB1, posedge TBE &&& _check_t1, DMY_SPC, notifier_web1 );
$setup ( posedge WEB2, posedge TBE &&& _check_t1, DMY_SPC, notifier_web2 );
$setup ( posedge WEB3, posedge TBE &&& _check_t1, DMY_SPC, notifier_web3 );
$setup ( posedge WEB4, posedge TBE &&& _check_t1, DMY_SPC, notifier_web4 );
$setup ( posedge WEB5, posedge TBE &&& _check_t1, DMY_SPC, notifier_web5 );
$setup ( posedge WEB6, posedge TBE &&& _check_t1, DMY_SPC, notifier_web6 );
$setup ( posedge WEB7, posedge TBE &&& _check_t1, DMY_SPC, notifier_web7 );
$setup ( negedge WEB0, posedge TBE &&& _check_t1, DMY_SPC, notifier_web0 );
$setup ( negedge WEB1, posedge TBE &&& _check_t1, DMY_SPC, notifier_web1 );
$setup ( negedge WEB2, posedge TBE &&& _check_t1, DMY_SPC, notifier_web2 );
$setup ( negedge WEB3, posedge TBE &&& _check_t1, DMY_SPC, notifier_web3 );
$setup ( negedge WEB4, posedge TBE &&& _check_t1, DMY_SPC, notifier_web4 );
$setup ( negedge WEB5, posedge TBE &&& _check_t1, DMY_SPC, notifier_web5 );
$setup ( negedge WEB6, posedge TBE &&& _check_t1, DMY_SPC, notifier_web6 );
$setup ( negedge WEB7, posedge TBE &&& _check_t1, DMY_SPC, notifier_web7 );
$hold ( posedge TBE &&& _check_t1, posedge WEB0, DMY_SPC, notifier_web0 );
$hold ( posedge TBE &&& _check_t1, posedge WEB1, DMY_SPC, notifier_web1 );
$hold ( posedge TBE &&& _check_t1, posedge WEB2, DMY_SPC, notifier_web2 );
$hold ( posedge TBE &&& _check_t1, posedge WEB3, DMY_SPC, notifier_web3 );
$hold ( posedge TBE &&& _check_t1, posedge WEB4, DMY_SPC, notifier_web4 );
$hold ( posedge TBE &&& _check_t1, posedge WEB5, DMY_SPC, notifier_web5 );
$hold ( posedge TBE &&& _check_t1, posedge WEB6, DMY_SPC, notifier_web6 );
$hold ( posedge TBE &&& _check_t1, posedge WEB7, DMY_SPC, notifier_web7 );
$hold ( posedge TBE &&& _check_t1, negedge WEB0, DMY_SPC, notifier_web0 );
$hold ( posedge TBE &&& _check_t1, negedge WEB1, DMY_SPC, notifier_web1 );
$hold ( posedge TBE &&& _check_t1, negedge WEB2, DMY_SPC, notifier_web2 );
$hold ( posedge TBE &&& _check_t1, negedge WEB3, DMY_SPC, notifier_web3 );
$hold ( posedge TBE &&& _check_t1, negedge WEB4, DMY_SPC, notifier_web4 );
$hold ( posedge TBE &&& _check_t1, negedge WEB5, DMY_SPC, notifier_web5 );
$hold ( posedge TBE &&& _check_t1, negedge WEB6, DMY_SPC, notifier_web6 );
$hold ( posedge TBE &&& _check_t1, negedge WEB7, DMY_SPC, notifier_web7 );
$setup ( posedge CSB, posedge BE &&& _check_n3, DMY_SPC, notifier_a );
$setup ( negedge CSB, posedge BE &&& _check_n3, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n3, posedge CSB, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_n3, negedge CSB, DMY_SPC, notifier_a );
$setup ( posedge CSB, posedge TBE &&& _check_t3, DMY_SPC, notifier_a );
$setup ( negedge CSB, posedge TBE &&& _check_t3, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t3, posedge CSB, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_t3, negedge CSB, DMY_SPC, notifier_a );
$width ( posedge BE &&& _check_n1, DMY_SPC, 0, notifier_wr );
$width ( negedge BE &&& _check_n1, DMY_SPC, 0, notifier_a );
$width ( posedge TBE &&& _check_t1, DMY_SPC, 0, notifier_wr );
$width ( negedge TBE &&& _check_t1, DMY_SPC, 0, notifier_a );
$setup ( posedge BUB, posedge BE &&& _check_bubn, DMY_SPC, notifier_a );
$setup ( negedge BUB, posedge BE &&& _check_bubn, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_bubn, posedge BUB, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_bubn, negedge BUB, DMY_SPC, notifier_a );
$setup ( posedge BUB, negedge BE &&& _check_bubn, DMY_SPC, notifier_a );
$setup ( negedge BUB, negedge BE &&& _check_bubn, DMY_SPC, notifier_a );
$hold ( negedge BE &&& _check_bubn, posedge BUB, DMY_SPC, notifier_a );
$hold ( negedge BE &&& _check_bubn, negedge BUB, DMY_SPC, notifier_a );
$setup ( posedge TEST, posedge BE &&& _check_test, DMY_SPC, notifier_a );
$setup ( negedge TEST, posedge BE &&& _check_test, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_test, posedge TEST, DMY_SPC, notifier_a );
$hold ( posedge BE &&& _check_test, negedge TEST, DMY_SPC, notifier_a );
$setup ( posedge TEST, negedge BE &&& _check_test, DMY_SPC, notifier_a );
$setup ( negedge TEST, negedge BE &&& _check_test, DMY_SPC, notifier_a );
$hold ( negedge BE &&& _check_test, posedge TEST, DMY_SPC, notifier_a );
$hold ( negedge BE &&& _check_test, negedge TEST, DMY_SPC, notifier_a );
$setup ( posedge BUB, posedge TBE &&& _check_bubt, DMY_SPC, notifier_a );
$setup ( negedge BUB, posedge TBE &&& _check_bubt, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_bubt, posedge BUB, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_bubt, negedge BUB, DMY_SPC, notifier_a );
$setup ( posedge BUB, negedge TBE &&& _check_bubt, DMY_SPC, notifier_a );
$setup ( negedge BUB, negedge TBE &&& _check_bubt, DMY_SPC, notifier_a );
$hold ( negedge TBE &&& _check_bubt, posedge BUB, DMY_SPC, notifier_a );
$hold ( negedge TBE &&& _check_bubt, negedge BUB, DMY_SPC, notifier_a );
$setup ( posedge TEST, posedge TBE &&& _check_test, DMY_SPC, notifier_a );
$setup ( negedge TEST, posedge TBE &&& _check_test, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_test, posedge TEST, DMY_SPC, notifier_a );
$hold ( posedge TBE &&& _check_test, negedge TEST, DMY_SPC, notifier_a );
$setup ( posedge TEST, negedge TBE &&& _check_test, DMY_SPC, notifier_a );
$setup ( negedge TEST, negedge TBE &&& _check_test, DMY_SPC, notifier_a );
$hold ( negedge TBE &&& _check_test, posedge TEST, DMY_SPC, notifier_a );
$hold ( negedge TBE &&& _check_test, negedge TEST, DMY_SPC, notifier_a );
$period ( posedge BE &&& _check_periodn, DMY_SPC, notifier_period );
$period ( posedge TBE &&& _check_periodt, DMY_SPC, notifier_period );
// <-- new spec
if (BE&&WEB0) ( BE => DO0 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO1 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO2 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO3 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO4 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO5 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO6 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB0) ( BE => DO7 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO8 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO9 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO10 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO11 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO12 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO13 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO14 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB1) ( BE => DO15 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO16 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO17 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO18 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO19 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO20 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO21 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO22 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB2) ( BE => DO23 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO24 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO25 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO26 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO27 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO28 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO29 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO30 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB3) ( BE => DO31 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO32 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO33 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO34 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO35 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO36 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO37 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO38 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB4) ( BE => DO39 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO40 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO41 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO42 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO43 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO44 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO45 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO46 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB5) ( BE => DO47 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO48 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO49 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO50 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO51 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO52 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO53 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO54 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB6) ( BE => DO55 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO56 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO57 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO58 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO59 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO60 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO61 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO62 ) = ( DMY_SPC, DMY_SPC );
if (BE&&WEB7) ( BE => DO63 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO0 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO1 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO2 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO3 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO4 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO5 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO6 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB0) ( TBE => DO7 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO8 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO9 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO10 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO11 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO12 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO13 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO14 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB1) ( TBE => DO15 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO16 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO17 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO18 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO19 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO20 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO21 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO22 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB2) ( TBE => DO23 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO24 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO25 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO26 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO27 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO28 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO29 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO30 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB3) ( TBE => DO31 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO32 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO33 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO34 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO35 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO36 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO37 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO38 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB4) ( TBE => DO39 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO40 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO41 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO42 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO43 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO44 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO45 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO46 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB5) ( TBE => DO47 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO48 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO49 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO50 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO51 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO52 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO53 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO54 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB6) ( TBE => DO55 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO56 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO57 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO58 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO59 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO60 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO61 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO62 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&WEB7) ( TBE => DO63 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO0 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO1 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO2 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO3 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO4 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO5 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO6 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB0) ( BE => DO7 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO8 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO9 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO10 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO11 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO12 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO13 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO14 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB1) ( BE => DO15 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO16 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO17 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO18 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO19 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO20 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO21 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO22 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB2) ( BE => DO23 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO24 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO25 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO26 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO27 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO28 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO29 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO30 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB3) ( BE => DO31 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO32 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO33 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO34 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO35 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO36 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO37 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO38 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB4) ( BE => DO39 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO40 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO41 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO42 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO43 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO44 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO45 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO46 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB5) ( BE => DO47 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO48 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO49 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO50 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO51 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO52 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO53 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO54 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB6) ( BE => DO55 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO56 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO57 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO58 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO59 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO60 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO61 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO62 ) = ( DMY_SPC, DMY_SPC );
if (BE&&!WEB7) ( BE => DO63 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO0 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO1 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO2 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO3 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO4 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO5 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO6 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB0) ( TBE => DO7 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO8 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO9 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO10 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO11 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO12 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO13 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO14 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB1) ( TBE => DO15 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO16 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO17 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO18 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO19 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO20 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO21 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO22 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB2) ( TBE => DO23 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO24 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO25 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO26 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO27 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO28 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO29 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO30 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB3) ( TBE => DO31 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO32 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO33 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO34 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO35 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO36 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO37 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO38 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB4) ( TBE => DO39 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO40 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO41 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO42 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO43 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO44 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO45 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO46 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB5) ( TBE => DO47 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO48 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO49 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO50 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO51 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO52 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO53 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO54 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB6) ( TBE => DO55 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO56 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO57 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO58 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO59 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO60 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO61 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO62 ) = ( DMY_SPC, DMY_SPC );
if (TBE&&!WEB7) ( TBE => DO63 ) = ( DMY_SPC, DMY_SPC );
// ------------ ( BUB,TEST,BUNRI => DO,TDO )= ?->"x" or "x"->? or Z
(BUB=> DO0)=1;
(BUB=> DO1)=1;
(BUB=> DO2)=1;
(BUB=> DO3)=1;
(BUB=> DO4)=1;
(BUB=> DO5)=1;
(BUB=> DO6)=1;
(BUB=> DO7)=1;
(BUB=> DO8)=1;
(BUB=> DO9)=1;
(BUB=> DO10)=1;
(BUB=> DO11)=1;
(BUB=> DO12)=1;
(BUB=> DO13)=1;
(BUB=> DO14)=1;
(BUB=> DO15)=1;
(BUB=> DO16)=1;
(BUB=> DO17)=1;
(BUB=> DO18)=1;
(BUB=> DO19)=1;
(BUB=> DO20)=1;
(BUB=> DO21)=1;
(BUB=> DO22)=1;
(BUB=> DO23)=1;
(BUB=> DO24)=1;
(BUB=> DO25)=1;
(BUB=> DO26)=1;
(BUB=> DO27)=1;
(BUB=> DO28)=1;
(BUB=> DO29)=1;
(BUB=> DO30)=1;
(BUB=> DO31)=1;
(BUB=> DO32)=1;
(BUB=> DO33)=1;
(BUB=> DO34)=1;
(BUB=> DO35)=1;
(BUB=> DO36)=1;
(BUB=> DO37)=1;
(BUB=> DO38)=1;
(BUB=> DO39)=1;
(BUB=> DO40)=1;
(BUB=> DO41)=1;
(BUB=> DO42)=1;
(BUB=> DO43)=1;
(BUB=> DO44)=1;
(BUB=> DO45)=1;
(BUB=> DO46)=1;
(BUB=> DO47)=1;
(BUB=> DO48)=1;
(BUB=> DO49)=1;
(BUB=> DO50)=1;
(BUB=> DO51)=1;
(BUB=> DO52)=1;
(BUB=> DO53)=1;
(BUB=> DO54)=1;
(BUB=> DO55)=1;
(BUB=> DO56)=1;
(BUB=> DO57)=1;
(BUB=> DO58)=1;
(BUB=> DO59)=1;
(BUB=> DO60)=1;
(BUB=> DO61)=1;
(BUB=> DO62)=1;
(BUB=> DO63)=1;
(TEST=> DO0)=1;
(TEST=> DO1)=1;
(TEST=> DO2)=1;
(TEST=> DO3)=1;
(TEST=> DO4)=1;
(TEST=> DO5)=1;
(TEST=> DO6)=1;
(TEST=> DO7)=1;
(TEST=> DO8)=1;
(TEST=> DO9)=1;
(TEST=> DO10)=1;
(TEST=> DO11)=1;
(TEST=> DO12)=1;
(TEST=> DO13)=1;
(TEST=> DO14)=1;
(TEST=> DO15)=1;
(TEST=> DO16)=1;
(TEST=> DO17)=1;
(TEST=> DO18)=1;
(TEST=> DO19)=1;
(TEST=> DO20)=1;
(TEST=> DO21)=1;
(TEST=> DO22)=1;
(TEST=> DO23)=1;
(TEST=> DO24)=1;
(TEST=> DO25)=1;
(TEST=> DO26)=1;
(TEST=> DO27)=1;
(TEST=> DO28)=1;
(TEST=> DO29)=1;
(TEST=> DO30)=1;
(TEST=> DO31)=1;
(TEST=> DO32)=1;
(TEST=> DO33)=1;
(TEST=> DO34)=1;
(TEST=> DO35)=1;
(TEST=> DO36)=1;
(TEST=> DO37)=1;
(TEST=> DO38)=1;
(TEST=> DO39)=1;
(TEST=> DO40)=1;
(TEST=> DO41)=1;
(TEST=> DO42)=1;
(TEST=> DO43)=1;
(TEST=> DO44)=1;
(TEST=> DO45)=1;
(TEST=> DO46)=1;
(TEST=> DO47)=1;
(TEST=> DO48)=1;
(TEST=> DO49)=1;
(TEST=> DO50)=1;
(TEST=> DO51)=1;
(TEST=> DO52)=1;
(TEST=> DO53)=1;
(TEST=> DO54)=1;
(TEST=> DO55)=1;
(TEST=> DO56)=1;
(TEST=> DO57)=1;
(TEST=> DO58)=1;
(TEST=> DO59)=1;
(TEST=> DO60)=1;
(TEST=> DO61)=1;
(TEST=> DO62)=1;
(TEST=> DO63)=1;
endspecify
`endif
/* ************************** */
`ifdef NEC_RTL_SIM
`else
// ----------------------------------------- timing error
always @ ( notifier_w ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
tmp_dout=memory[address];
for(i=0;i<BIT/8;i=i+1) begin
if (WEB[i]!==1'b1) begin
tmp_data=memory[address];
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_data[j]=1'bx;
tmp_DO[j]=1'bx;
end
memory[address]=tmp_data;
end
else begin
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_DO[j]=tmp_dout[j];
end
end
end
TohFunctionTimE;
end
always @ ( notifier_a ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
MemWriteX;
DO=all_X;
end
always @ ( notifier_wr ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
for(i=0;i<BIT/8;i=i+1) begin
if (WEB[i]!==1'b1) begin
tmp_data=memory[address];
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_data[j]=1'bx;
end
memory[address]=tmp_data;
end
end
DO=all_X;
end
always @ ( notifier_web0 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[0]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web1 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[1]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web2 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[2]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web3 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[3]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web4 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[4]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web5 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[5]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web6 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[6]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_web7 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
webchk[7]=1'b1;
WebTimErrorFunct;
end
always @ ( notifier_period ) begin
if ( pre_csb !== 1 ) begin
disable FUNCT_NORMAL;
disable FUNCT_TEST;
address=A;
MemWriteX;
DO=all_X;
end
end
`endif
// ----------------------------------------- ram function
always @ ( _TEST ) begin
pre_BE = _BE ;
pre_TBE = _TBE ;
if ( _BUB!==1'b0 && (_BE!==1'b0 || _TBE!==1'b0)
&& csb!==1'b1) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _TEST===1'bx) begin
DO=all_X;
tmp_DO=all_X;
if ( _CSB!==1'b1 && (_BE!==1'b0 || _TBE!==1'b0) ) begin
MemWriteX;
tmp_DO=all_X;
DO=all_X;
end
end
end
always @ ( _BUB ) begin
pre_BE = _BE ;
pre_TBE = _TBE ;
if ( _BUB===1'bx) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _TEST!==1'b1 && _BE!==1'b0 && csb!==1'b1) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _TEST!==1'b0 && _TBE!==1'b0 && csb!==1'b1) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _BUB===1'b0) begin
DO=all_X;
end
end
// ---------------------------------------- _CSB change on BE/TBE=X
always @ ( _CSB ) begin
if ((_BE===1'bx) && (_CSB!==1'b1) && (_BUB!==1'b0) && (_TEST!==1'b1)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
if ((_TBE===1'bx) && (_CSB!==1'b1) && (_BUB!==1'b0) && (_TEST!==1'b0)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
end
// ---------------------------------------- writepin change on BE/TBE=X
always @ ( writepin ) begin
if ((_BE===1'bx) && (_CSB!==1'b1) && (writepin!==1'b1)
&& (_BUB!==1'b0) && (_TEST!==1'b1)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
if ((_TBE===1'bx) && (_CSB!==1'b1) && (writepin!==1'b1)
&& (_BUB!==1'b0) && (_TEST!==1'b0)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
end
reg web_wr;
// ---------------------------------- function
always @ ( _BE ) begin : FUNCT_NORMAL
if ( (_BUB===1'b1) && (_TEST===1'b0)) begin // --- normal mode
casez ( {pre_BE,_BE} )
2'b01 : begin // -------------- 0->1 posedge
address=A;
csb=_CSB;
////
if ( _CSB===1'b0) begin
webchk={BIT/8{1'bx}};
old_DO=DO;
if (address > (WORD-1)) PrintWMsg_1;
web_wr = &WEB;
if((web_wr === 1'b0) | (web_wr === 1'bx))
WriteAddressXCount;
else
x_count = 0;
///
if (x_count !== 0) begin
WriteAddX;
DO=all_X;
tmp_DO=all_X;
end
///
else begin
tmp_dout=memory[address];
tmp_data=memory[address];
for(i=0;i<BIT/8;i=i+1) begin
ByteWriteFunction;
end
TohFunction;
//
end
///
end
////
else if ( _CSB===1'bx) begin
old_DO=DO;
MemWriteX;
tmp_DO=all_X;
TohFunction;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
csb=1'bx;
if ( _CSB!==1'b1) begin
old_DO=DO;
MemWriteX;
tmp_DO=all_X;
TohFunction;
end
end
endcase
pre_BE = _BE ;
end
else if ( (_BUB===1'b1) && (_TEST===1'bx)) begin // --- unkown mode
if ( _CSB!==1'b1 && _BE!==1'b1) begin
pre_BE = _BE ;
csb=1'bx;
MemWriteX;
tmp_DO=all_X;
DO=all_X;
end
end
end
// ---------------------------------- Test mode function (mode==4 only)
always @ ( _TBE ) begin : FUNCT_TEST
if ( (_BUB===1'b1) && (_TEST===1'b1)) begin // --- normal mode
casez ( {pre_TBE,_TBE} )
2'b01 : begin // -------------- 0->1 posedge
address=A;
csb=_CSB;
////
if ( _CSB===1'b0) begin
webchk={BIT/8{1'bx}};
old_DO=DO;
if (address > (WORD-1)) PrintWMsg_1;
WriteAddressXCount;
///
if (x_count !== 0) begin
WriteAddX;
tmp_DO=all_X;
DO=all_X;
end
///
else begin
tmp_dout=memory[address];
tmp_data=memory[address];
for(i=0;i<BIT/8;i=i+1) begin
ByteWriteFunction;
end
TohFunction;
//
end
///
end
////
else if ( _CSB===1'bx) begin
old_DO=DO;
MemWriteX;
tmp_DO=all_X;
TohFunction;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
csb=1'bx;
//#1 csb_tim=1'bx;
if ( _CSB!==1'b1) begin
old_DO=DO;
MemWriteX;
tmp_DO=all_X;
TohFunction;
end
end
endcase
pre_TBE = _TBE ;
end
else if ( (_BUB===1'b1) && (_TEST===1'bx)) begin // --- unkown mode
if ( _CSB!==1'b1 && _TBE!==1'b1) begin
pre_TBE = _TBE ;
csb=1'bx;
MemWriteX;
tmp_DO=all_X;
DO=all_X;
end
end
end
// ---------------------------------- Test mode function (mode==4 only)
/* ----------------------------------- "x" conunt task */
task WriteAddressXCount;
begin
//$display("###: %t: %M", $time);
x_count=0; // write address "x" count
for (i=0;i<ADD_BIT;i=i+1) begin
if (address[i]===1'bx) begin
x_add_num[x_count]=i;
x_count=x_count+1;
end
end
end
endtask
/* ----------------------------------- find address & write task */
task WriteAddX;
reg[ADD_BIT-1:0] new_address;
reg[ADD_BIT-1:0] b_count,num_count;
integer j,k,m;
begin
//$display("###: %t: %M", $time);
new_address=address;
b_count=(2<<(x_count-1))-1;
num_count={ADD_BIT{1'b0}};
for (j=0;j<=b_count;j=j+1) begin
for (k=0;k<x_count;k=k+1) begin
new_address[x_add_num[k]] = num_count[k];
memory[new_address]=all_X;
end
num_count=num_count+1;
end
end
endtask
/* ------------ write x in all address */
task MemWriteX;
integer i;
begin
for(i=0;i<WORD;i=i+1) memory[i]=all_X;
end
endtask
/* ------------ access invalid address warning message */
task PrintWMsg_1;
begin
$display( $time,,"%m #### You are accessing the invalid address.\n");
end
endtask
/* ------------ byte write function for WEB timing error*/
task WebTimErrorFunct;
//input [ADD_BIT-1:0] address;
begin
tmp_dout=memory[address];
tmp_data=memory[address];
for(i=0;i<BIT/8;i=i+1) begin
if (1'b1==webchk[i]) begin
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_data[j]=1'bx;
tmp_DO[j]=1'bx;
end
memory[address]=tmp_data;
end
else begin
ByteWriteFunction;
end
end
TohFunctionTimE;
end
endtask
/* ------------ byte write function */
task ByteWriteFunction;
begin
if (WEB[i]===1'b0) begin
data = DI;
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_data[j]=data[j];
tmp_DO[j]=data[j];
end
memory[address]=tmp_data;
end
else if (WEB[i]===1'b1) begin
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_DO[j]=tmp_dout[j];
end
end
else begin
for(j=i*8;j<(i+1)*8;j=j+1) begin
tmp_data[j]=1'bx;
tmp_DO[j]=1'bx;
end
memory[address]=tmp_data;
end
end
endtask
/* ------------ tOH function */
task TohFunction;
begin
if (DO===tmp_DO) begin
DO=tmp_DO;
end
else begin
`ifdef NEC_RTL_SIM
#(tACC_r) DO = tmp_DO;
`else
if (DO===all_X) begin
DO=tmp_DO;
end
else begin
DO={BIT{1'bx}};
#1;
if (DO===all_X) begin
DO=tmp_DO;
end
end
`endif // NEC_RTL_SIM
end
end
endtask
task TohFunctionTimE;
begin
if (old_DO===tmp_DO) begin
DO=tmp_DO;
end
else begin
if (old_DO===all_X) begin
DO=tmp_DO;
end
else begin
DO={BIT{1'bx}};
#1;
if (DO===all_X) begin
DO=tmp_DO;
end
end
end
end
endtask
/* ************************** */
`ifdef NEC_RTL_SIM
task PrintRTLMsg;
begin
$display("===============================================");
$display("Pure Behavior Function Mode : WBSRAMSHS256W64C3B8");
$display("Instance : %m");
$display("Abstract Delay :");
$display(" tACC : %d",tACC_r);
$display("===============================================");
end
endtask
`endif
endmodule
`ifdef verifault
`nosuppress_faults
`disable_portfaults
`endif
`endcelldefine