WBSRAMSHS128W32C3.v
55.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
//VERSION: 7.1.3 DATE:01/10/26 RAM TYPE: 1port RAM
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
`suppress_faults
`enable_portfaults
`endif
module WBSRAMSHS128W32C3 (
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,
A6,
A5,
A4,
A3,
A2,
A1,
A0,
WEB,
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 A0 ;
input A1 ;
input A2 ;
input A3 ;
input A4 ;
input A5 ;
input A6 ;
input WEB ;
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 ;
parameter BIT=32;
parameter WORD=128;
parameter ADD_BIT=7;
wire[BIT-1:0] DI;
wire[ADD_BIT-1:0] A;
/* -------------------------- */
reg [BIT-1:0] DO;
reg [BIT-1:0] tmp_DO;
reg [ADD_BIT-1:0] address;
reg intcsb, 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;
integer do_flag;
`ifdef NEC_RTL_SIM
parameter tACC_w = 1029; // Dummy value in Wrtie through
parameter tACC_r = 1375; // Dummy value in Read mode
`endif // NEC_RTL_SIM
/* -------------------------- */
// ------------------------------------- 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_period;
`endif
`ifdef NEC_RTL_SIM
initial begin
PrintRTLMsg;
end
`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 ( _A0, A0 );
buf ( _A1, A1 );
buf ( _A2, A2 );
buf ( _A3, A3 );
buf ( _A4, A4 );
buf ( _A5, A5 );
buf ( _A6, A6 );
buf ( _WEB, WEB );
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 ( 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 );
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_n1;
wire _check_t1;
wire _check_n2;
wire _check_t2;
wire _check_n3;
wire _check_t3;
wire _check_bubn;
wire _check_bubt;
wire _check_test;
wire _check_periodn;
wire _check_periodt;
`endif
`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_n2=((_CSB!==1'b1) && (_WEB!==1'b1) && (normal_mode==1));
assign _check_t2=((_CSB!==1'b1) && (_WEB!==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));
buf #1 (pre_csb,intcsb);
assign _check_periodn=((normal_mode==1));
assign _check_periodt=((test_mode==1));
`endif // NEC_RTL_SIM
`ifdef NEC_RTL_SIM
`else
specify
specparam DMY_SPC=1:1:1;
$setup ( posedge DI0, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI1, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI2, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI3, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI4, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI5, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI6, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI7, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI8, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI9, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI10, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI11, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI12, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI13, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI14, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI15, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI16, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI17, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI18, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI19, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI20, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI21, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI22, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI23, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI24, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI25, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI26, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI27, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI28, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI29, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI30, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI31, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI0, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI1, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI2, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI3, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI4, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI5, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI6, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI7, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI8, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI9, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI10, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI11, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI12, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI13, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI14, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI15, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI16, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI17, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI18, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI19, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI20, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI21, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI22, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI23, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI24, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI25, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI26, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI27, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI28, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI29, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI30, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$setup ( negedge DI31, posedge BE &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI0 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI1 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI2 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI3 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI4 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI5 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI6 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI7 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI8 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI9 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI10 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI11 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI12 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI13 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI14 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI15 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI16 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI17 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI18 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI19 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI20 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI21 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI22 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI23 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI24 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI25 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI26 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI27 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI28 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI29 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI30 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge DI31 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI0 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI1 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI2 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI3 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI4 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI5 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI6 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI7 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI8 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI9 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI10 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI11 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI12 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI13 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI14 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI15 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI16 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI17 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI18 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI19 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI20 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI21 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI22 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI23 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI24 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI25 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI26 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI27 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI28 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI29 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI30 &&& _check_n2, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge DI31 &&& _check_n2, DMY_SPC, notifier_w );
$setup ( posedge DI0, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI1, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI2, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI3, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI4, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI5, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI6, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI7, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI8, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI9, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI10, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI11, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI12, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI13, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI14, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI15, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI16, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI17, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI18, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI19, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI20, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI21, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI22, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI23, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI24, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI25, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI26, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI27, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI28, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI29, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI30, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( posedge DI31, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI0, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI1, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI2, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI3, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI4, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI5, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI6, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI7, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI8, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI9, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI10, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI11, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI12, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI13, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI14, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI15, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI16, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI17, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI18, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI19, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI20, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI21, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI22, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI23, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI24, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI25, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI26, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI27, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI28, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI29, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI30, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$setup ( negedge DI31, posedge TBE &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI0 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI1 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI2 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI3 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI4 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI5 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI6 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI7 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI8 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI9 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI10 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI11 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI12 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI13 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI14 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI15 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI16 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI17 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI18 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI19 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI20 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI21 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI22 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI23 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI24 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI25 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI26 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI27 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI28 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI29 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI30 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge DI31 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI0 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI1 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI2 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI3 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI4 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI5 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI6 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI7 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI8 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI9 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI10 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI11 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI12 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI13 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI14 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI15 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI16 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI17 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI18 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI19 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI20 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI21 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI22 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI23 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI24 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI25 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI26 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI27 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI28 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI29 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI30 &&& _check_t2, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge DI31 &&& _check_t2, 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 ( 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 );
$hold ( posedge BE, posedge A0 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, posedge A1 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, posedge A2 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, posedge A3 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, posedge A4 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, posedge A5 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, posedge A6 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A0 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A1 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A2 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A3 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A4 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A5 &&& _check_n1, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge A6 &&& _check_n1, 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 ( 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 );
$hold ( posedge TBE, posedge A0 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, posedge A1 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, posedge A2 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, posedge A3 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, posedge A4 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, posedge A5 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, posedge A6 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A0 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A1 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A2 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A3 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A4 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A5 &&& _check_t1, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge A6 &&& _check_t1, DMY_SPC, notifier_a );
$setup ( posedge WEB, posedge BE &&& _check_n1, DMY_SPC, notifier_w );
$setup ( negedge WEB, posedge BE &&& _check_n1, DMY_SPC, notifier_w );
$hold ( posedge BE, posedge WEB &&& _check_n1, DMY_SPC, notifier_w );
$hold ( posedge BE, negedge WEB &&& _check_n1, DMY_SPC, notifier_w );
$setup ( posedge WEB, posedge TBE &&& _check_t1, DMY_SPC, notifier_w );
$setup ( negedge WEB, posedge TBE &&& _check_t1, DMY_SPC, notifier_w );
$hold ( posedge TBE, posedge WEB &&& _check_t1, DMY_SPC, notifier_w );
$hold ( posedge TBE, negedge WEB &&& _check_t1, DMY_SPC, notifier_w );
$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, posedge CSB &&& _check_n3, DMY_SPC, notifier_a );
$hold ( posedge BE, negedge CSB &&& _check_n3, 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, posedge CSB &&& _check_t3, DMY_SPC, notifier_a );
$hold ( posedge TBE, negedge CSB &&& _check_t3, 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&&WEB) ( BE => DO0 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO1 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO2 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO3 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO4 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO5 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO6 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO7 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO8 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO9 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO10 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO11 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO12 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO13 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO14 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO15 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO16 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO17 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO18 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO19 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO20 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO21 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO22 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO23 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO24 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO25 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO26 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO27 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO28 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO29 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO30 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&WEB) ( BE => DO31 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO0 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO1 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO2 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO3 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO4 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO5 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO6 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO7 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO8 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO9 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO10 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO11 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO12 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO13 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO14 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO15 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO16 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO17 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO18 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO19 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO20 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO21 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO22 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO23 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO24 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO25 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO26 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO27 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO28 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO29 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO30 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&WEB) ( TBE => DO31 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO0 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO1 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO2 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO3 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO4 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO5 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO6 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO7 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO8 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO9 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO10 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO11 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO12 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO13 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO14 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO15 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO16 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO17 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO18 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO19 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO20 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO21 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO22 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO23 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO24 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO25 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO26 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO27 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO28 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO29 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO30 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (BE&&!WEB) ( BE => DO31 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO0 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO1 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO2 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO3 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO4 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO5 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO6 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO7 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO8 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO9 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO10 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO11 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO12 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO13 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO14 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO15 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO16 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO17 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO18 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO19 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO20 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO21 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO22 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO23 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO24 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO25 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO26 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO27 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO28 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO29 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => DO30 ) = ( DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC, DMY_SPC );
if (TBE&&!WEB) ( TBE => 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_w ) begin
address=A;
WriteAddressXCount;
if (x_count !== 0) WriteAddX;
else memory[address]=all_X;
disable FUNCT_NORMAL;
disable FUNCT_TEST;
DO=all_X;
end
always @ ( notifier_a ) begin
address=A;
MemWriteX;
disable FUNCT_NORMAL;
disable FUNCT_TEST;
DO=all_X;
end
always @ ( notifier_period ) begin
if ( pre_csb !== 1 ) begin
address=A;
MemWriteX;
disable FUNCT_NORMAL;
disable FUNCT_TEST;
DO=all_X;
end
end
always @ ( notifier_wr ) begin
address=A;
if (_WEB!==1'b1) begin
WriteAddressXCount;
if (x_count !== 0) WriteAddX;
else memory[address]=all_X;
end
disable FUNCT_NORMAL;
disable FUNCT_TEST;
DO=all_X;
end
`endif // NEC_RTL_SIM
// ----------------------------------------- ram function
always @ ( _TEST ) begin
pre_BE = _BE ;
pre_TBE = _TBE ;
if ( _BUB!==1'b0 && (_BE!==1'b0 || _TBE!==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 && (_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 && intcsb!==1'b1) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
else if ( _TEST!==1'b0 && _TBE!==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
// ---------------------------------------- _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
// ---------------------------------------- _WEB change on BE/TBE=X
always @ ( _WEB ) begin
if ((_BE===1'bx) && (_CSB!==1'b1) && (_WEB!==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) && (_WEB!==1'b1)
&& (_BUB!==1'b0) && (_TEST!==1'b0)) begin
MemWriteX;
DO=all_X;
tmp_DO=all_X;
end
end
// ---------------------------------- 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;
intcsb=_CSB;
////
if ( _CSB===1'b0) begin
if (address > (WORD-1)) PrintWMsg_1;
WriteAddressXCount;
///
if (x_count !== 0) begin
WriteAddX;
DO=all_X;
end
///
else begin
//
if ( _WEB===1'b0) begin
memory[address]=DI;
tmp_DO=DI;
// add
`ifdef NEC_RTL_SIM
#(tACC_w) DO = tmp_DO;
`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
//
else if ( _WEB===1'b1) begin
tmp_DO=memory[address];
// add
`ifdef NEC_RTL_SIM
#(tACC_r) DO = tmp_DO;
`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
//
else begin
memory[address]=all_X;
tmp_DO=all_X;
DO=all_X;
end
//
end
///
end
////
else if ( _CSB===1'bx) begin
MemWriteX;
tmp_DO=all_X;
DO=all_X;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
intcsb=1'bx;
if ( _CSB!==1'b1) begin
MemWriteX;
tmp_DO=all_X;
DO=all_X;
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 ;
intcsb=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;
intcsb=_CSB;
////
if ( _CSB===1'b0) begin
if (address > (WORD-1)) PrintWMsg_1;
WriteAddressXCount;
///
if (x_count !== 0) begin
WriteAddX;
DO=all_X;
end
///
else begin
//
if ( _WEB===1'b0) begin
memory[address]=DI;
tmp_DO=DI;
// add
`ifdef NEC_RTL_SIM
#(tACC_w) DO = tmp_DO;
`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
//
else if ( _WEB===1'b1) begin
tmp_DO=memory[address];
// add
`ifdef NEC_RTL_SIM
#(tACC_r) DO = tmp_DO;
`else
if ( DO === tmp_DO ) begin
DO=tmp_DO;
end
else begin
if (DO===all_X) begin
DO=tmp_DO;
end
else begin
DO=all_X;
#1;
if (DO===all_X) begin
DO=tmp_DO;
end
end
end
`endif // NEC_RTL_SIM
end
// add
//
else begin
memory[address]=all_X;
tmp_DO=all_X;
DO=all_X;
end
//
end
///
end
////
else if ( _CSB===1'bx) begin
MemWriteX;
tmp_DO=all_X;
DO=all_X;
end
////
end
2'bx1 ,
2'b?x : begin // -------------- x edge
intcsb=1'bx;
if ( _CSB!==1'b1) begin
MemWriteX;
tmp_DO=all_X;
DO=all_X;
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 ;
intcsb=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
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
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, please read the users manual. There is same possibility of that quiescent current(iddq) will flows.\n");
$display( $time,,"%m #### You are accessing the invalid address.\n");
end
endtask
`ifdef NEC_RTL_SIM
task PrintRTLMsg;
begin
$display("===============================================");
$display("Behavior Function Mode : WBSRAMSHS128W32C3");
$display("Instance : %m");
$display("Abstract Delay :");
$display(" tACC (Read) : %d",tACC_r);
$display(" tACC (Write): %d",tACC_w);
$display("===============================================");
end
endtask
`endif
/* ************************** */
endmodule
`ifdef verifault
`nosuppress_faults
`disable_portfaults
`endif
`endcelldefine