WBSRAMDHDWR32W32C2.v
65.3 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
//VERSION: 2.2.0 DATE:02/01/09 RAM TYPE: 2port HD RAM
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
`suppress_faults
`enable_portfaults
`endif
module WBSRAMDHDWR32W32C2 (
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,
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,
AA4,
AA3,
AA2,
AA1,
AA0,
AB4,
AB3,
AB2,
AB1,
AB0,
CSA,
CSB,
BEA,
BEB,
TBEA,
TBEB,
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 AA0 ;
input AA1 ;
input AA2 ;
input AA3 ;
input AA4 ;
input AB0 ;
input AB1 ;
input AB2 ;
input AB3 ;
input AB4 ;
input CSA ;
input CSB ;
input BEA ;
input BEB ;
input TBEA ;
input TBEB ;
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 ;
parameter BIT=32;
parameter WORD=32;
parameter ADD_BIT=5;
parameter tOH= 566:857:1396; // DO Hold
wire[BIT-1:0] DI;
wire[ADD_BIT-1:0] AA;
wire[ADD_BIT-1:0] AB;
/* -------------------------- */
reg [BIT-1:0] DO;
reg [BIT-1:0] tmp_DO;
reg [ADD_BIT-1:0] addressa;
reg [ADD_BIT-1:0] addressb;
reg intcsa,pre_BEA,pre_TBEA;
reg intcsb,pre_BEB,pre_TBEB;
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;
integer same_add_err;
`ifdef NEC_RTL_SIM
parameter tACC = 1510 ; // Dummy value
time A_time,B_time; // add
parameter tBEA_BEB_S=1336; /* clock BEB - data BEA */
parameter tBEB_BEA_S=1336; /* clock BEA - data BEB */
parameter tTBEA_TBEB_S=1336; /* clock BEB - data BEA */
parameter tTBEB_TBEA_S=1336; /* clock BEA - data BEB */
`endif // NEC_RTL_SIM
/* -------------------------- */
// ------------------------------------- specify check flg
wire normal_mode;
wire test_mode;
`ifdef NEC_RTL_SIM
`else
reg notifier_wa;
reg notifier_aa;
reg notifier_wra;
reg notifier_b;
reg notifier_bwa;
reg notifier_period_aa;
reg notifier_period_b;
reg notifier_same;
reg notifier_samex;
`endif
`ifdef NEC_RTL_SIM
initial begin
PrintRTLMsg;
end
`endif
initial begin
same_add_err = 1'b0;
end
// ------------------------------------- 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 ( _AA0, AA0 );
buf ( _AA1, AA1 );
buf ( _AA2, AA2 );
buf ( _AA3, AA3 );
buf ( _AA4, AA4 );
buf ( _AB0, AB0 );
buf ( _AB1, AB1 );
buf ( _AB2, AB2 );
buf ( _AB3, AB3 );
buf ( _AB4, AB4 );
buf ( _CSA, CSA );
buf ( _CSB, CSB );
buf ( _BEA, BEA );
buf ( _BEB, BEB );
buf ( _TBEA, TBEA );
buf ( _TBEB, TBEB );
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 ( AA[0], _AA0 );
buf ( AA[1], _AA1 );
buf ( AA[2], _AA2 );
buf ( AA[3], _AA3 );
buf ( AA[4], _AA4 );
buf ( AB[0], _AB0 );
buf ( AB[1], _AB1 );
buf ( AB[2], _AB2 );
buf ( AB[3], _AB3 );
buf ( AB[4], _AB4 );
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 );
/* ----------------------- specify */
assign normal_mode=((_BUB!==0) && (_TEST!==1));
assign test_mode=((_BUB!==0) && (_TEST!==0));
`ifdef NEC_RTL_SIM
`else
wire _check_n1a;
wire _check_t1a;
wire _check_n1b;
wire _check_t1b;
wire _check_n2a;
wire _check_t2a;
wire _check_n2b;
wire _check_t2b;
wire _check_n3;
wire _check_t3;
wire _check_bubna;
wire _check_bubnb;
wire _check_bubta;
wire _check_bubtb;
wire _check_testa;
wire _check_testb;
wire _check_n4ab;
wire _check_n4ba;
wire _check_n4bax;
wire _check_t4ab;
wire _check_t4ba;
wire _check_t4bax;
wire _check_n4h;
wire _check_t4h;
wire _check_periodna;
wire _check_periodta;
wire _check_periodnb;
wire _check_periodtb;
`endif
`ifdef NEC_RTL_SIM
`else
assign _check_n1a=((_CSA!==1'b1) && (normal_mode==1));
assign _check_t1a=((_CSA!==1'b1) && (test_mode==1));
assign _check_n1b=((_CSB!==1'b1) && (normal_mode==1));
assign _check_t1b=((_CSB!==1'b1) && (test_mode==1));
assign _check_n3=((normal_mode==1));
assign _check_t3=((test_mode==1));
assign _check_bubna=((_CSA!==1'b1) && (_TEST!==1'b1));
assign _check_bubta=((_CSA!==1'b1) && (_TEST!==1'b0));
assign _check_testa=((_CSA!==1'b1) && (_BUB!==1'b0));
assign _check_bubnb=((_CSB!==1'b1) && (_TEST!==1'b1));
assign _check_bubtb=((_CSB!==1'b1) && (_TEST!==1'b0));
assign _check_testb=((_CSB!==1'b1) && (_BUB!==1'b0));
assign _check_n4ab=((normal_mode==1) && (intcsa!==1'b1) && (addressa===AB) && (_CSB!==1'b1) );
assign _check_n4ba=((normal_mode==1) && (intcsb===1'b0) && (addressb===AA) && (_CSA!==1'b1) );
assign _check_n4bax=((normal_mode==1) && (intcsb===1'bx) && (_CSA!==1'b1) );
assign _check_t4ab=((test_mode==1) && (intcsa!==1'b1) && (addressa===AB) && (_CSB!==1'b1) );
assign _check_t4ba=((test_mode==1) && (intcsb===1'b0) && (addressb===AA) && (_CSA!==1'b1) );
assign _check_t4bax=((test_mode==1) && (intcsb===1'bx) && (_CSA!==1'b1) );
assign _check_n4h=((normal_mode==1) && (_CSA!==1'b1) && (AA===AB) && (_CSB!==1'b1) );
assign _check_t4h=((test_mode==1) && (_CSA!==1'b1) && (AA===AB) && (_CSB!==1'b1) );
buf #1 (pre_csa,intcsa);
buf #1 (pre_csb,intcsb);
// assign _check_periodna=((normal_mode==1) && (pre_csa!==1'b1));
// assign _check_periodta=((test_mode==1))&& (pre_csa!==1'b1);
// assign _check_periodnb=((normal_mode==1) && (pre_csb!==1'b1));
// assign _check_periodtb=((test_mode==1) && (pre_csb!==1'b1));
assign _check_periodna=((normal_mode==1));
assign _check_periodta=((test_mode==1));
assign _check_periodnb=((normal_mode==1));
assign _check_periodtb=((test_mode==1));
`endif // NEC_RTL_SIM
`ifdef NEC_RTL_SIM
`else
specify
specparam DMY_SPC=1:1:1;
specparam BEA_BEB_S=598:856:1336; /* clock BEB - data BEA */
specparam BEB_BEA_S=598:856:1336; /* clock BEA - data BEB */
specparam TBEA_TBEB_S=598:856:1336; /* clock BEB - data BEA */
specparam TBEB_TBEA_S=598:856:1336; /* clock BEA - data BEB */
$setup ( posedge DI0, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI1, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI2, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI3, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI4, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI5, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI6, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI7, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI8, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI9, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI10, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI11, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI12, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI13, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI14, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI15, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI16, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI17, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI18, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI19, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI20, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI21, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI22, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI23, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI24, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI25, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI26, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI27, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI28, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI29, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI30, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI31, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI0, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI1, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI2, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI3, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI4, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI5, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI6, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI7, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI8, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI9, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI10, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI11, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI12, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI13, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI14, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI15, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI16, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI17, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI18, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI19, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI20, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI21, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI22, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI23, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI24, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI25, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI26, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI27, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI28, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI29, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI30, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( negedge DI31, posedge BEA &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI0 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI1 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI2 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI3 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI4 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI5 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI6 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI7 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI8 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI9 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI10 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI11 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI12 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI13 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI14 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI15 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI16 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI17 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI18 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI19 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI20 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI21 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI22 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI23 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI24 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI25 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI26 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI27 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI28 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI29 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI30 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, posedge DI31 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI0 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI1 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI2 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI3 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI4 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI5 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI6 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI7 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI8 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI9 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI10 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI11 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI12 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI13 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI14 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI15 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI16 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI17 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI18 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI19 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI20 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI21 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI22 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI23 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI24 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI25 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI26 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI27 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI28 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI29 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI30 &&& _check_n1a, DMY_SPC, notifier_wa );
$hold ( posedge BEA, negedge DI31 &&& _check_n1a, DMY_SPC, notifier_wa );
$setup ( posedge DI0, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI1, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI2, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI3, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI4, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI5, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI6, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI7, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI8, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI9, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI10, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI11, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI12, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI13, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI14, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI15, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI16, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI17, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI18, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI19, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI20, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI21, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI22, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI23, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI24, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI25, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI26, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI27, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI28, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI29, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI30, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge DI31, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI0, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI1, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI2, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI3, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI4, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI5, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI6, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI7, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI8, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI9, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI10, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI11, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI12, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI13, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI14, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI15, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI16, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI17, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI18, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI19, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI20, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI21, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI22, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI23, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI24, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI25, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI26, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI27, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI28, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI29, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI30, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( negedge DI31, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI0 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI1 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI2 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI3 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI4 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI5 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI6 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI7 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI8 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI9 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI10 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI11 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI12 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI13 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI14 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI15 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI16 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI17 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI18 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI19 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI20 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI21 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI22 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI23 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI24 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI25 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI26 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI27 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI28 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI29 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI30 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, posedge DI31 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI0 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI1 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI2 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI3 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI4 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI5 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI6 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI7 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI8 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI9 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI10 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI11 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI12 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI13 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI14 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI15 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI16 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI17 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI18 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI19 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI20 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI21 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI22 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI23 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI24 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI25 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI26 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI27 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI28 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI29 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI30 &&& _check_t1a, DMY_SPC, notifier_wa );
$hold ( posedge TBEA, negedge DI31 &&& _check_t1a, DMY_SPC, notifier_wa );
$setup ( posedge AA0, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( posedge AA1, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( posedge AA2, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( posedge AA3, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( posedge AA4, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( negedge AA0, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( negedge AA1, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( negedge AA2, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( negedge AA3, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( negedge AA4, posedge BEA &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, posedge AA0 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, posedge AA1 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, posedge AA2 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, posedge AA3 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, posedge AA4 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, negedge AA0 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, negedge AA1 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, negedge AA2 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, negedge AA3 &&& _check_n1a, DMY_SPC, notifier_aa );
$hold ( posedge BEA, negedge AA4 &&& _check_n1a, DMY_SPC, notifier_aa );
$setup ( posedge AA0, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( posedge AA1, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( posedge AA2, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( posedge AA3, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( posedge AA4, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( negedge AA0, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( negedge AA1, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( negedge AA2, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( negedge AA3, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( negedge AA4, posedge TBEA &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, posedge AA0 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, posedge AA1 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, posedge AA2 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, posedge AA3 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, posedge AA4 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, negedge AA0 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, negedge AA1 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, negedge AA2 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, negedge AA3 &&& _check_t1a, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, negedge AA4 &&& _check_t1a, DMY_SPC, notifier_aa );
$setup ( posedge AB0, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB1, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB2, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB3, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB4, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB0, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB1, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB2, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB3, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB4, posedge BEB &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, posedge AB0 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, posedge AB1 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, posedge AB2 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, posedge AB3 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, posedge AB4 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, negedge AB0 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, negedge AB1 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, negedge AB2 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, negedge AB3 &&& _check_n1b, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, negedge AB4 &&& _check_n1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB0, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB1, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB2, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB3, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( posedge AB4, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB0, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB1, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB2, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB3, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( negedge AB4, posedge TBEB &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, posedge AB0 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, posedge AB1 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, posedge AB2 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, posedge AB3 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, posedge AB4 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, negedge AB0 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, negedge AB1 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, negedge AB2 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, negedge AB3 &&& _check_t1b, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, negedge AB4 &&& _check_t1b, DMY_SPC, notifier_bwa );
$setup ( posedge CSA, posedge BEA &&& _check_n3, DMY_SPC, notifier_aa );
$setup ( negedge CSA, posedge BEA &&& _check_n3, DMY_SPC, notifier_aa );
$hold ( posedge BEA, posedge CSA &&& _check_n3, DMY_SPC, notifier_aa );
$hold ( posedge BEA, negedge CSA &&& _check_n3, DMY_SPC, notifier_aa );
$setup ( posedge CSA, posedge TBEA &&& _check_t3, DMY_SPC, notifier_aa );
$setup ( negedge CSA, posedge TBEA &&& _check_t3, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, posedge CSA &&& _check_t3, DMY_SPC, notifier_aa );
$hold ( posedge TBEA, negedge CSA &&& _check_t3, DMY_SPC, notifier_aa );
$setup ( posedge CSB, posedge BEB &&& _check_n3, DMY_SPC, notifier_bwa );
$setup ( negedge CSB, posedge BEB &&& _check_n3, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, posedge CSB &&& _check_n3, DMY_SPC, notifier_bwa );
$hold ( posedge BEB, negedge CSB &&& _check_n3, DMY_SPC, notifier_bwa );
$setup ( posedge CSB, posedge TBEB &&& _check_t3, DMY_SPC, notifier_bwa );
$setup ( negedge CSB, posedge TBEB &&& _check_t3, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, posedge CSB &&& _check_t3, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB, negedge CSB &&& _check_t3, DMY_SPC, notifier_bwa );
$width ( posedge BEA &&& _check_n1a, DMY_SPC, 0, notifier_wra );
$width ( negedge BEA &&& _check_n1a, DMY_SPC, 0, notifier_aa );
$width ( posedge TBEA &&& _check_t1a, DMY_SPC, 0, notifier_wra );
$width ( negedge TBEA &&& _check_t1a, DMY_SPC, 0, notifier_aa );
$width ( posedge BEB &&& _check_n1b, DMY_SPC, 0, notifier_b );
$width ( negedge BEB &&& _check_n1b, DMY_SPC, 0, notifier_bwa );
$width ( posedge TBEB &&& _check_t1b, DMY_SPC, 0, notifier_b );
$width ( negedge TBEB &&& _check_t1b, DMY_SPC, 0, notifier_bwa );
$setup ( posedge BUB, posedge BEA &&& _check_bubna, DMY_SPC, notifier_aa );
$setup ( negedge BUB, posedge BEA &&& _check_bubna, DMY_SPC, notifier_aa );
$hold ( posedge BEA &&& _check_bubna, posedge BUB, DMY_SPC, notifier_aa );
$hold ( posedge BEA &&& _check_bubna, negedge BUB, DMY_SPC, notifier_aa );
$setup ( posedge BUB, negedge BEA &&& _check_bubna, DMY_SPC, notifier_aa );
$setup ( negedge BUB, negedge BEA &&& _check_bubna, DMY_SPC, notifier_aa );
$hold ( negedge BEA &&& _check_bubna, posedge BUB, DMY_SPC, notifier_aa );
$hold ( negedge BEA &&& _check_bubna, negedge BUB, DMY_SPC, notifier_aa );
$setup ( posedge TEST, posedge BEA &&& _check_testa, DMY_SPC, notifier_aa );
$setup ( negedge TEST, posedge BEA &&& _check_testa, DMY_SPC, notifier_aa );
$hold ( posedge BEA &&& _check_testa, posedge TEST, DMY_SPC, notifier_aa );
$hold ( posedge BEA &&& _check_testa, negedge TEST, DMY_SPC, notifier_aa );
$setup ( posedge TEST, negedge BEA &&& _check_testa, DMY_SPC, notifier_aa );
$setup ( negedge TEST, negedge BEA &&& _check_testa, DMY_SPC, notifier_aa );
$hold ( negedge BEA &&& _check_testa, posedge TEST, DMY_SPC, notifier_aa );
$hold ( negedge BEA &&& _check_testa, negedge TEST, DMY_SPC, notifier_aa );
$setup ( posedge BUB, posedge TBEA &&& _check_bubta, DMY_SPC, notifier_aa );
$setup ( negedge BUB, posedge TBEA &&& _check_bubta, DMY_SPC, notifier_aa );
$hold ( posedge TBEA &&& _check_bubta, posedge BUB, DMY_SPC, notifier_aa );
$hold ( posedge TBEA &&& _check_bubta, negedge BUB, DMY_SPC, notifier_aa );
$setup ( posedge BUB, negedge TBEA &&& _check_bubta, DMY_SPC, notifier_aa );
$setup ( negedge BUB, negedge TBEA &&& _check_bubta, DMY_SPC, notifier_aa );
$hold ( negedge TBEA &&& _check_bubta, posedge BUB, DMY_SPC, notifier_aa );
$hold ( negedge TBEA &&& _check_bubta, negedge BUB, DMY_SPC, notifier_aa );
$setup ( posedge TEST, posedge TBEA &&& _check_testa, DMY_SPC, notifier_aa );
$setup ( negedge TEST, posedge TBEA &&& _check_testa, DMY_SPC, notifier_aa );
$hold ( posedge TBEA &&& _check_testa, posedge TEST, DMY_SPC, notifier_aa );
$hold ( posedge TBEA &&& _check_testa, negedge TEST, DMY_SPC, notifier_aa );
$setup ( posedge TEST, negedge TBEA &&& _check_testa, DMY_SPC, notifier_aa );
$setup ( negedge TEST, negedge TBEA &&& _check_testa, DMY_SPC, notifier_aa );
$hold ( negedge TBEA &&& _check_testa, posedge TEST, DMY_SPC, notifier_aa );
$hold ( negedge TBEA &&& _check_testa, negedge TEST, DMY_SPC, notifier_aa );
$setup ( posedge BUB, posedge BEB &&& _check_bubnb, DMY_SPC, notifier_bwa );
$setup ( negedge BUB, posedge BEB &&& _check_bubnb, DMY_SPC, notifier_bwa );
$hold ( posedge BEB &&& _check_bubnb, posedge BUB, DMY_SPC, notifier_bwa );
$hold ( posedge BEB &&& _check_bubnb, negedge BUB, DMY_SPC, notifier_bwa );
$setup ( posedge BUB, negedge BEB &&& _check_bubnb, DMY_SPC, notifier_bwa );
$setup ( negedge BUB, negedge BEB &&& _check_bubnb, DMY_SPC, notifier_bwa );
$hold ( negedge BEB &&& _check_bubnb, posedge BUB, DMY_SPC, notifier_bwa );
$hold ( negedge BEB &&& _check_bubnb, negedge BUB, DMY_SPC, notifier_bwa );
$setup ( posedge TEST, posedge BEB &&& _check_testb, DMY_SPC, notifier_bwa );
$setup ( negedge TEST, posedge BEB &&& _check_testb, DMY_SPC, notifier_bwa );
$hold ( posedge BEB &&& _check_testb, posedge TEST, DMY_SPC, notifier_bwa );
$hold ( posedge BEB &&& _check_testb, negedge TEST, DMY_SPC, notifier_bwa );
$setup ( posedge TEST, negedge BEB &&& _check_testb, DMY_SPC, notifier_bwa );
$setup ( negedge TEST, negedge BEB &&& _check_testb, DMY_SPC, notifier_bwa );
$hold ( negedge BEB &&& _check_testb, posedge TEST, DMY_SPC, notifier_bwa );
$hold ( negedge BEB &&& _check_testb, negedge TEST, DMY_SPC, notifier_bwa );
$setup ( posedge BUB, posedge TBEB &&& _check_bubtb, DMY_SPC, notifier_bwa );
$setup ( negedge BUB, posedge TBEB &&& _check_bubtb, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB &&& _check_bubtb, posedge BUB, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB &&& _check_bubtb, negedge BUB, DMY_SPC, notifier_bwa );
$setup ( posedge BUB, negedge TBEB &&& _check_bubtb, DMY_SPC, notifier_bwa );
$setup ( negedge BUB, negedge TBEB &&& _check_bubtb, DMY_SPC, notifier_bwa );
$hold ( negedge TBEB &&& _check_bubtb, posedge BUB, DMY_SPC, notifier_bwa );
$hold ( negedge TBEB &&& _check_bubtb, negedge BUB, DMY_SPC, notifier_bwa );
$setup ( posedge TEST, posedge TBEB &&& _check_testb, DMY_SPC, notifier_bwa );
$setup ( negedge TEST, posedge TBEB &&& _check_testb, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB &&& _check_testb, posedge TEST, DMY_SPC, notifier_bwa );
$hold ( posedge TBEB &&& _check_testb, negedge TEST, DMY_SPC, notifier_bwa );
$setup ( posedge TEST, negedge TBEB &&& _check_testb, DMY_SPC, notifier_bwa );
$setup ( negedge TEST, negedge TBEB &&& _check_testb, DMY_SPC, notifier_bwa );
$hold ( negedge TBEB &&& _check_testb, posedge TEST, DMY_SPC, notifier_bwa );
$hold ( negedge TBEB &&& _check_testb, negedge TEST, DMY_SPC, notifier_bwa );
// -------- BEA(R), period */
$period ( posedge BEA &&& _check_periodna, DMY_SPC, notifier_period_aa );
$period ( posedge TBEA &&& _check_periodta, DMY_SPC, notifier_period_aa );
$period ( posedge BEB &&& _check_periodnb, DMY_SPC, notifier_period_b );
$period ( posedge TBEB &&& _check_periodtb, DMY_SPC, notifier_period_b );
// -------- BEA(R), BEB(R) setup/hold
$setup ( posedge BEA, posedge BEB &&& _check_n4ab, BEA_BEB_S, notifier_same );
$setup ( posedge BEB, posedge BEA &&& _check_n4ba, BEB_BEA_S, notifier_same );
$setup ( posedge BEB, posedge BEA &&& _check_n4bax, BEB_BEA_S, notifier_samex );
$hold ( posedge BEB &&& _check_n4h, posedge BEA, 1, notifier_same );
// -------- TBEA(R), TBEB(R) setup/hold
$setup ( posedge TBEA, posedge TBEB &&& _check_t4ab, TBEA_TBEB_S, notifier_same );
$setup ( posedge TBEB, posedge TBEA &&& _check_t4ba, TBEB_TBEA_S, notifier_same );
$setup ( posedge TBEB, posedge TBEA &&& _check_t4bax, TBEB_TBEA_S, notifier_samex );
$hold ( posedge TBEB &&& _check_t4h, posedge TBEA, 1, notifier_same );
// <-- new spec
( BEB => DO0 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO1 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO2 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO3 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO4 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO5 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO6 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO7 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO8 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO9 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO10 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO11 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO12 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO13 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO14 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO15 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO16 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO17 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO18 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO19 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO20 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO21 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO22 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO23 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO24 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO25 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO26 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO27 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO28 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO29 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO30 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( BEB => DO31 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC, DMY_SPC );
( TBEB => DO0 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO1 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO2 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO3 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO4 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO5 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO6 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO7 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO8 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO9 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO10 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO11 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO12 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO13 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO14 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO15 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO16 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO17 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO18 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO19 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO20 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO21 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO22 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO23 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO24 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO25 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO26 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO27 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO28 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO29 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO30 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC , DMY_SPC );
( TBEB => DO31 ) = ( DMY_SPC, DMY_SPC , DMY_SPC , DMY_SPC , 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;
(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;
endspecify
`endif // NEC_RTL_SIM
/* ************************** */
// ----------------------------------------- timing error
`ifdef NEC_RTL_SIM
`else
always @ ( notifier_wa ) begin
addressa=AA;
WriteAddressAXCount;
if (x_count !== 0) WriteAddAX;
else memory[addressa]=all_X;
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
end
always @ ( notifier_aa ) begin
addressa=AA;
MemWriteX;
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
/* B port Unkown */
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
tmp_DO=all_X;
DO=all_X;
end
always @ ( notifier_period_aa ) begin
if ( pre_csa !== 1 ) begin
addressa=AA;
MemWriteX;
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
tmp_DO=all_X;
DO=all_X;
end
end
always @ ( notifier_b ) begin
addressb=AB;
/* A port Unkown */
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
tmp_DO=all_X;
DO=all_X;
end
always @ ( notifier_bwa ) begin
addressb=AB;
MemWriteX;
/* A port Unkown */
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
tmp_DO=all_X;
DO=all_X;
end
always @ ( notifier_period_b ) begin
if ( pre_csb !== 1 ) begin
MemWriteX;
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
tmp_DO=all_X;
DO=all_X;
end
end
always @ ( notifier_wra ) begin
addressa=AA;
WriteAddressAXCount;
if (x_count !== 0) WriteAddAX;
else memory[addressa]=all_X;
disable FUNCTA_NORMAL;
disable FUNCTA_TEST;
end
always @ ( notifier_same ) begin
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
DO=all_X;
tmp_DO=all_X;
end
always @ ( notifier_samex ) begin
addressa=AA;
WriteAddressAXCount;
if (x_count !== 0) WriteAddAX;
else memory[addressa]=all_X;
disable FUNCTB_NORMAL;
disable FUNCTB_TEST;
DO=all_X;
tmp_DO=all_X;
end
`endif // NEC_RTL_SIM
// ----------------------------------------- ram function
always @ ( _TEST ) begin
pre_BEA = _BEA ;
pre_TBEA = _TBEA ;
pre_BEB = _BEB ;
pre_TBEB = _TBEB ;
if ( _BUB!==1'b0 && (_BEA!==1'b0 || _TBEA!==1'b0)
&& intcsa!==1'b1) begin
MemWriteX;
end
else if ( _TEST===1'bx) begin
if ( _CSA!==1'b1 && (_BEA!==1'b0 || _TBEA!==1'b0) ) begin
MemWriteX;
end
end
if ( _BUB!==1'b0 && (_BEB!==1'b0 || _TBEB!==1'b0)
&& intcsb!==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 && (_BEB!==1'b0 || _TBEB!==1'b0) ) begin
MemWriteX;
tmp_DO=all_X;
DO=all_X;
end
end
end
always @ ( _BUB ) begin
pre_BEA = _BEA ;
pre_TBEA = _TBEA ;
pre_BEB = _BEB ;
pre_TBEB = _TBEB ;
if ( _BUB===1'bx) begin
MemWriteX;
end
else if ( _TEST!==1'b1 && _BEA!==1'b0 && intcsa!==1'b1) begin
MemWriteX;
end
else if ( _TEST!==1'b0 && _TBEA!==1'b0 && intcsa!==1'b1) begin
MemWriteX;
end
else if ( _BUB===1'b0) begin
end
if ( _BUB===1'bx) begin
DO=all_X;
tmp_DO=all_X;
end
else if ( _TEST!==1'b1 && _BEB!==1'b0 && intcsb!==1'b1) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _TEST!==1'b0 && _TBEB!==1'b0 && intcsb!==1'b1) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _BUB===1'b0) begin
DO=all_X;
end
end
// ---------------------------------------- _CSA change on BEA/TBEA=X
always @ ( _CSA ) begin
if ((_BEA===1'bx) && (_CSA!==1'b1) && (_BUB!==1'b0) && (_TEST!==1'b1)) begin
MemWriteX;
end
if ((_TBEA===1'bx) && (_CSA!==1'b1) && (_BUB!==1'b0) && (_TEST!==1'b0)) begin
MemWriteX;
end
end
// ---------------------------------------- _CSB change on BEB/TBEB=X
always @ ( _CSB ) begin
if ((_BEB===1'bx) && (_CSB!==1'b1) && (_BUB!==1'b0) && (_TEST!==1'b1)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
if ((_TBEB===1'bx) && (_CSB!==1'b1) && (_BUB!==1'b0) && (_TEST!==1'b0)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
end
// ---------------------------------- function
always @ ( _BEA ) begin : FUNCTA_NORMAL
if ( (_BUB===1'b1) && (_TEST===1'b0)) begin // --- normal mode
casez ( {pre_BEA,_BEA} )
2'b01 : begin // -------------- 0->1 posedge
addressa=AA;
intcsa=_CSA;
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
`else
same_add_err = 1'b0;
RC_checkA;
`endif
`endif
////
if ( _CSA===1'b0) begin
if (addressa > (WORD-1)) PrintWMsg_1;
WriteAddressAXCount;
///
if (x_count !== 0) begin
WriteAddAX;
end
///
//
else if ( _BEB===1'bx && _CSB!==1'b1) begin
WriteAddAX;
end
//
else begin
memory[addressa]=DI;
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
`else
if (same_add_err !== 1'b0) begin
DO=all_X;
tmp_DO=all_X;
end
`endif
`endif
end
///
end
////
else if ( _CSA===1'bx) begin
MemWriteX;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
intcsa=1'bx;
if ( _CSA!==1'b1) begin
MemWriteX;
end
end
endcase
pre_BEA = _BEA ;
end
else if ( (_BUB===1'b1) && (_TEST===1'bx)) begin // --- unkown mode
if ( _CSA!==1'b1 && _BEA!==1'b1) begin
pre_BEA = _BEA ;
intcsa=1'bx;
MemWriteX;
end
end
end
// ---------------------------------- normal b function
always @ ( _BEB ) begin : FUNCTB_NORMAL
if ( (_BUB===1'b1) && (_TEST===1'b0)) begin // --- normal mode
casez ( {pre_BEB,_BEB} )
2'b01 : begin // -------------- 0->1 posedge
addressb=AB;
intcsb=_CSB;
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
`else
same_add_err = 1'b0;
RC_checkB;
`endif
`endif
////
if ( _CSB===1'b0) begin
if (addressb > (WORD-1)) PrintWMsg_1;
WriteAddressBXCount;
///
//
if ( _BEA===1'bx && _CSA!==1'b1) begin
tmp_DO=all_X;
DO=tmp_DO;
end
//
else begin
///
if (x_count !== 0) begin
WriteAddBX;
end
///
tmp_DO=memory[addressb];
// add
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
#(tACC) DO = tmp_DO;
`else
if (same_add_err !== 1'b0) begin
DO=all_X;
tmp_DO=all_X;
end
else begin
#(tACC) DO = tmp_DO;
end
`endif
`else
if ( DO === tmp_DO ) begin
DO=tmp_DO;
end
else begin
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
end
`endif // NEC_RTL_SIM
end
// add
//
///
end
////
else if ( _CSB===1'bx) begin
MemWriteX;
tmp_DO=all_X;
DO=tmp_DO;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
intcsb=1'bx;
if ( _CSB!==1'b1) begin
MemWriteX;
tmp_DO=all_X;
DO=tmp_DO;
end
end
endcase
pre_BEB = _BEB ;
end
else if ( (_BUB===1'b1) && (_TEST===1'bx)) begin // --- unkown mode
if ( _CSB!==1'b1 && _BEB!==1'b1) begin
MemWriteX;
pre_BEB = _BEB ;
intcsb=1'bx;
tmp_DO=all_X;
DO=all_X;
end
end
end
// ---------------------------------- Test mode function (mode==4 only)
always @ ( _TBEA ) begin : FUNCTA_TEST
if ( (_BUB===1'b1) && (_TEST===1'b1)) begin // --- normal mode
casez ( {pre_TBEA,_TBEA} )
2'b01 : begin // -------------- 0->1 posedge
addressa=AA;
intcsa=_CSA;
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
`else
same_add_err=1'b0;
RC_checkTA;
`endif
`endif
////
if ( _CSA===1'b0) begin
if (addressa > (WORD-1)) PrintWMsg_1;
WriteAddressAXCount;
///
if (x_count !== 0) begin
WriteAddAX;
end
///
//
else if ( _TBEB===1'bx && _CSB!==1'b1) begin
WriteAddAX;
end
//
else begin
memory[addressa]=DI;
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
`else
if (same_add_err !== 1'b0) begin
DO=all_X;
tmp_DO=all_X;
end
`endif
`endif
end
///
end
////
else if ( _CSA===1'bx) begin
MemWriteX;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
intcsa=1'bx;
if ( _CSA!==1'b1) begin
MemWriteX;
end
end
endcase
pre_TBEA = _TBEA ;
end
else if ( (_BUB===1'b1) && (_TEST===1'bx)) begin // --- unkown mode
if ( _CSA!==1'b1 && _TBEA!==1'b1) begin
pre_TBEA = _TBEA ;
intcsa=1'bx;
MemWriteX;
end
end
end
// ---------------------------------- Test mode function (mode==4 only)
always @ ( _TBEB ) begin : FUNCTB_TEST
if ( (_BUB===1'b1) && (_TEST===1'b1)) begin // --- normal mode
casez ( {pre_TBEB,_TBEB} )
2'b01 : begin // -------------- 0->1 posedge
addressb=AB;
intcsb=_CSB;
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
`else
same_add_err=1'b0;
RC_checkTB;
`endif
`endif
////
if ( _CSB===1'b0) begin
if (addressb > (WORD-1)) PrintWMsg_1;
WriteAddressBXCount;
//
if ( _TBEA===1'bx && _CSA!==1'b1) begin
tmp_DO=all_X;
DO=tmp_DO;
end
//
else begin
///
if (x_count !== 0) begin
WriteAddBX;
end
///
tmp_DO=memory[addressb];
`ifdef NEC_RTL_SIM
`ifdef NEC_NO_SAME_ADD_CHECK
#(tACC) DO = tmp_DO;
`else
if (same_add_err !== 1'b0) begin
DO=all_X;
tmp_DO=all_X;
end
else begin
#(tACC) DO = tmp_DO;
end
`endif
`else
if ( DO === tmp_DO ) begin
DO=tmp_DO;
end
else begin
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
end
`endif // NEC_RTL_SIM
end
// add
//
end
////
else if ( _CSB===1'bx) begin
MemWriteX;
tmp_DO=all_X;
DO=tmp_DO;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
intcsb=1'bx;
if ( _CSB!==1'b1) begin
MemWriteX;
tmp_DO=all_X;
DO=tmp_DO;
end
end
endcase
pre_TBEB = _TBEB ;
end
else if ( (_BUB===1'b1) && (_TEST===1'bx)) begin // --- unkown mode
if ( _CSB!==1'b1 && _TBEB!==1'b1) begin
MemWriteX;
pre_TBEB = _TBEB ;
intcsb=1'bx;
tmp_DO=all_X;
DO=all_X;
end
end
end
// ---------------------------------- Test mode function (mode==4 only)
/* ----------------------------------- "x" conunt task */
task WriteAddressAXCount;
begin
x_count=0; // write address "x" count
for (i=0;i<ADD_BIT;i=i+1) begin
if (addressa[i]===1'bx) begin
x_add_num[x_count]=i;
x_count=x_count+1;
end
end
end
endtask
task WriteAddressBXCount;
begin
x_count=0; // write address "x" count
for (i=0;i<ADD_BIT;i=i+1) begin
if (addressb[i]===1'bx) begin
x_add_num[x_count]=i;
x_count=x_count+1;
end
end
end
endtask
/* ----------------------------------- find address & write task */
task WriteAddAX;
reg[ADD_BIT-1:0] new_address;
reg[ADD_BIT-1:0] b_count,num_count;
integer j,k,m;
begin
new_address=addressa;
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
task WriteAddBX;
reg[ADD_BIT-1:0] new_address;
reg[ADD_BIT-1:0] b_count,num_count;
integer j,k,m;
begin
new_address=addressb;
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
`ifdef NEC_RTL_SIM
task PrintRTLMsg;
begin
$display("===============================================");
$display("Pure Behavior Function Mode : WBSRAMDHDWR32W32C2");
$display("Instance : %m");
$display("Abstract Delay :");
$display(" tACC : %d",tACC);
$display("===============================================");
end
endtask
`endif
/* ************************** */
`ifdef NEC_RTL_SIM
task RC_checkA;
begin
A_time=$time;
if ( (A_time===B_time) && (_CSA!==1) && (_CSB!==1) && (A_time===$time) && ((AA!=AB) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AA);
same_add_err = 1'b1;
end
else if ( (A_time - B_time < tBEB_BEA_S ) && (_CSA!==1) && (intcsb!==1) && (A_time===$time) && ((AA!=addressb) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AA);
same_add_err = 1'b1;
end
end
endtask
task RC_checkB;
begin
B_time=$time;
if ( (A_time===B_time) && (_CSB!==1) && (_CSA!==1) && (B_time===$time) && ((AA!=AB) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AB);
same_add_err = 1'b1;
end
else if ( (B_time - A_time < tBEA_BEB_S ) && (intcsa!==1) && (_CSB!==1) && (B_time===$time) && ((AB!=addressa) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AB);
same_add_err = 1'b1;
end
end
endtask
task RC_checkTA;
begin
A_time=$time;
if ( (A_time===B_time) && (_CSA!==1) && (_CSB!==1) && (A_time===$time) && ((AA!=AB) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AA);
same_add_err = 1'b1;
end
else if ( (A_time - B_time < tTBEB_TBEA_S ) && (_CSA!==1) && (intcsb!==1) && (A_time===$time) && ((AA!=addressb) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AA);
same_add_err = 1'b1;
end
end
endtask
task RC_checkTB;
begin
B_time=$time;
if ( (A_time===B_time) && (_CSB!==1) && (_CSA!==1) && (B_time===$time) && ((AA!=AB) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AB);
same_add_err = 1'b1;
end
else if ( (B_time - A_time < tTBEA_TBEB_S ) && (intcsa!==1) && (_CSB!==1) && (B_time===$time) && ((AB!=addressa) ? 0 : 1) ) begin
$display("%t: %m A and B ports are accessed same address %b", $time, AB);
same_add_err = 1'b1;
end
end
endtask
`endif
endmodule
`ifdef verifault
`nosuppress_faults
`disable_portfaults
`endif
`endcelldefine