TBGTSELAHORCLX2.v
1.05 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
// VERSION:1.00 DATE:2002/05/13 OPENCAD Verilog LIBRARY
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
`suppress_faults
`enable_portfaults
`endif
module TBGTSELAHORCLX2 ( N01, H01, H02, H03 );
input H01;
input H02;
input H03;
output N01;
reg notifier;
// Dummy Buffer
buf ( _H01, H01 );
buf ( _H02, H02 );
buf ( _H03, H03 );
DLSFQ ( _G001, _H01, _H02, 1'b1, 1'b1, notifier );
or ( _enl, _H03, _G001 );
not ( _enlB, _enl );
or ( N01, _enlB, _H02 );
specify
specparam DMY_SPC=1:1:1;
$setup ( posedge H01, negedge H02, DMY_SPC, notifier );
$setup ( negedge H01, negedge H02, DMY_SPC, notifier );
$hold ( negedge H02, posedge H01, DMY_SPC, notifier );
$hold ( negedge H02, negedge H01, DMY_SPC, notifier );
$width ( posedge H02, DMY_SPC, 0, notifier );
( H02 *> N01 ) = ( DMY_SPC, DMY_SPC );
( H03 *> N01 ) = ( DMY_SPC, DMY_SPC );
endspecify
endmodule
`ifdef verifault
`nosuppress_faults
`disable_portfaults
`endif
`endcelldefine