code stringlengths 35 6.69k | score float64 6.5 11.5 |
|---|---|
module MAJ32 (
A,
B,
C,
Q
);
output Q;
input A, B, C;
and (g_1_out, B, A);
and (g_2_out, C, B);
and (g_3_out, C, A);
or (Q, g_1_out, g_2_out, g_3_out);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.104854 |
module MUX21 (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 8.103185 |
module MUX22 (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.765749 |
module MUX24 (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.624273 |
module MUX26 (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.212181 |
module MUX31 (
A,
B,
C,
Q,
S0,
S1
);
output Q;
input A, B, C, S0, S1;
U_MUX_3_2(
Q, A, B, C, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (0, 0);
(S1 => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.536431 |
module MUX32 (
A,
B,
C,
Q,
S0,
S1
);
output Q;
input A, B, C, S0, S1;
U_MUX_3_2(
Q, A, B, C, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (0, 0);
(S1 => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.68434 |
module MUX41 (
A,
B,
C,
D,
Q,
S0,
S1
);
output Q;
input A, B, C, D, S0, S1;
U_MUX_4_2(
Q, A, B, C, D, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (0, 0);
(S1 => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.737853 |
module MUX42 (
A,
B,
C,
D,
Q,
S0,
S1
);
output Q;
input A, B, C, D, S0, S1;
U_MUX_4_2(
Q, A, B, C, D, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (0, 0);
(S1 => Q) = (0, 0);
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.024492 |
module NAND20 (
A,
B,
Q
);
output Q;
input A, B;
nand (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.360419 |
module NAND21 (
A,
B,
Q
);
output Q;
input A, B;
nand (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.100486 |
module NAND22 (
A,
B,
Q
);
output Q;
input A, B;
nand (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.901158 |
module NAND24 (
A,
B,
Q
);
output Q;
input A, B;
nand (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.873146 |
module NAND28 (
A,
B,
Q
);
output Q;
input A, B;
nand (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.72493 |
module NAND31 (
A,
B,
C,
Q
);
output Q;
input A, B, C;
nand (Q, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.565959 |
module NAND32 (
A,
B,
C,
Q
);
output Q;
input A, B, C;
nand (Q, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.970591 |
module NAND42 (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
nand (Q, D, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.684757 |
module NOR20 (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.807852 |
module NOR21 (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.193616 |
module NOR22 (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.23982 |
module NOR23 (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.864951 |
module NOR24 (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.116657 |
module NOR32 (
A,
B,
C,
Q
);
output Q;
input A, B, C;
nor (Q, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.963762 |
module NOR40 (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
nor (Q, D, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.747946 |
module NOR41 (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
nor (Q, D, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.58159 |
module NOR42 (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
nor (Q, D, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.695021 |
module TFP1 (
C,
Q,
QN,
SN
);
output Q, QN;
input C, SN;
`ifdef functional
U_FT_P_SB_NO(
buf_Q, C, SN, 1'b1
);
`else
reg notifier;
U_FT_P_SB_NO(
buf_Q, C, SN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(C => Q) = (1, 1);
(C => QN) = (1, 1);
(SN => Q) = (0, 0);
(SN => QN) = (0, 0);
$recovery(posedge SN, posedge C, 0, notifier);
$hold(posedge C, posedge SN, 0, notifier);
$width(posedge C, 1, 0, notifier);
$width(negedge C, 1, 0, notifier);
$width(negedge SN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.504362 |
module XNR20 (
A,
B,
Q
);
output Q;
input A, B;
xnor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.81643 |
module XNR21 (
A,
B,
Q
);
output Q;
input A, B;
xnor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.340645 |
module XNR22 (
A,
B,
Q
);
output Q;
input A, B;
xnor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.24797 |
module XOR20 (
A,
B,
Q
);
output Q;
input A, B;
xor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.819594 |
module XOR22 (
A,
B,
Q
);
output Q;
input A, B;
xor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (0, 0);
(B => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.05529 |
module XOR30 (
A,
B,
C,
Q
);
output Q;
input A, B, C;
xor (Q, C, B, A);
`ifdef functional
`else
specify
(B => Q) = (0, 0);
(A => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.613619 |
module XOR31 (
A,
B,
C,
Q
);
output Q;
input A, B, C;
xor (Q, C, B, A);
`ifdef functional
`else
specify
(B => Q) = (0, 0);
(A => Q) = (0, 0);
(C => Q) = (0, 0);
endspecify
`endif
endmodule
| 7.149952 |
module XOR40 (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
xor (Q, D, C, B, A);
`ifdef functional
`else
specify
(B => Q) = (0, 0);
(A => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.705224 |
module XOR41 (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
xor (Q, D, C, B, A);
`ifdef functional
`else
specify
(B => Q) = (0, 0);
(A => Q) = (0, 0);
(C => Q) = (0, 0);
(D => Q) = (0, 0);
endspecify
`endif
endmodule
| 6.747052 |
module ADD32_3B (
A,
B,
CI,
CO,
S
);
output CO, S;
input A, B, CI;
U_ADDR2_S(
S, A, B, CI
); U_ADDR2_C(
CO, A, B, CI
);
`ifdef functional
`else
specify
(A => S) = (1, 1);
(B => S) = (1, 1);
(CI => S) = (1, 1);
(A => CO) = (1, 1);
(B => CO) = (1, 1);
(CI => CO) = (1, 1);
endspecify
`endif
endmodule
| 6.702869 |
module AOI2112_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
and (g_3_out, B, A);
nor (Q, D, C, g_3_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.511956 |
module AOI310_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
and (g_1_out, B, A, C);
nor (Q, g_1_out, D);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.530108 |
module AOI312_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
and (g_1_out, B, A, C);
nor (Q, g_1_out, D);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.667179 |
module BUF12_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.65479 |
module BUF15_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.710187 |
module BUF2_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.647421 |
module BUF4_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.834076 |
module BUFE4_3B (
A,
E,
Q
);
output Q;
input A, E;
bufif1 (Q, A, E);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(E => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.885424 |
module BUFT10_3B (
A,
EN,
Q
);
output Q;
input A, EN;
bufif0 (Q, A, EN);
`ifdef functional
`else
specify
(EN => Q) = (1, 1);
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.541775 |
module BUFT15_3B (
A,
EN,
Q
);
output Q;
input A, EN;
bufif0 (Q, A, EN);
`ifdef functional
`else
specify
(EN => Q) = (1, 1);
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.558385 |
module BUFT2_3B (
A,
EN,
Q
);
output Q;
input A, EN;
bufif0 (Q, A, EN);
`ifdef functional
`else
specify
(EN => Q) = (1, 1);
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.698684 |
module BUFT4_3B (
A,
EN,
Q
);
output Q;
input A, EN;
bufif0 (Q, A, EN);
`ifdef functional
`else
specify
(EN => Q) = (1, 1);
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.669672 |
module BUFT6_3B (
A,
EN,
Q
);
output Q;
input A, EN;
bufif0 (Q, A, EN);
`ifdef functional
`else
specify
(EN => Q) = (1, 1);
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.569897 |
module CLKBU15_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.526491 |
module DL1_3B (
D,
GN,
Q,
QN
);
output Q, QN;
input D, GN;
`ifdef functional
U_LD_N_NO(
buf_Q, D, GN, 1'b1
);
`else
reg notifier;
U_LD_N_NO(
buf_Q, D, GN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(D => Q) = (1, 1);
(D => QN) = (1, 1);
(GN => Q) = (1, 1);
(GN => QN) = (1, 1);
$setup(posedge D, posedge GN, 0, notifier);
$setup(negedge D, posedge GN, 0, notifier);
$hold(posedge GN, negedge D, 0, notifier);
$hold(posedge GN, posedge D, 0, notifier);
$width(negedge GN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.648622 |
module DL3_3B (
D,
GN,
Q,
QN
);
output Q, QN;
input D, GN;
`ifdef functional
U_LD_N_NO(
buf_Q, D, GN, 1'b1
);
`else
reg notifier;
U_LD_N_NO(
buf_Q, D, GN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(D => Q) = (1, 1);
(D => QN) = (1, 1);
(GN => Q) = (1, 1);
(GN => QN) = (1, 1);
$setup(posedge D, posedge GN, 0, notifier);
$setup(negedge D, posedge GN, 0, notifier);
$hold(posedge GN, negedge D, 0, notifier);
$hold(posedge GN, posedge D, 0, notifier);
$width(negedge GN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.644 |
module DLP1_3B (
D,
GN,
Q,
QN,
SN
);
output Q, QN;
input D, GN, SN;
`ifdef functional
U_LD_N_SB_NO(
buf_Q, D, GN, SN, 1'b1
);
`else
reg notifier;
U_LD_N_SB_NO(
buf_Q, D, GN, SN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(D => Q) = (1, 1);
(D => QN) = (1, 1);
(GN => Q) = (1, 1);
(GN => QN) = (1, 1);
(SN => Q) = (1, 1);
(SN => QN) = (1, 1);
$setup(posedge D, posedge GN, 0, notifier);
$setup(negedge D, posedge GN, 0, notifier);
$recovery(posedge SN, posedge GN, 0, notifier);
$hold(posedge GN, negedge D, 0, notifier);
$hold(posedge GN, posedge D, 0, notifier);
$hold(posedge GN, posedge SN, 0, notifier);
$width(negedge GN, 1, 0, notifier);
$width(negedge SN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.564288 |
module DLP3_3B (
D,
GN,
Q,
QN,
SN
);
output Q, QN;
input D, GN, SN;
`ifdef functional
U_LD_N_SB_NO(
buf_Q, D, GN, SN, 1'b1
);
`else
reg notifier;
U_LD_N_SB_NO(
buf_Q, D, GN, SN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(D => Q) = (1, 1);
(D => QN) = (1, 1);
(GN => Q) = (1, 1);
(GN => QN) = (1, 1);
(SN => Q) = (1, 1);
(SN => QN) = (1, 1);
$setup(posedge D, posedge GN, 0, notifier);
$setup(negedge D, posedge GN, 0, notifier);
$recovery(posedge SN, posedge GN, 0, notifier);
$hold(posedge GN, negedge D, 0, notifier);
$hold(posedge GN, posedge D, 0, notifier);
$hold(posedge GN, posedge SN, 0, notifier);
$width(negedge GN, 1, 0, notifier);
$width(negedge SN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.630284 |
module DLQ1_3B (
D,
GN,
Q
);
output Q;
input D, GN;
`ifdef functional
U_LD_N_NO(
Q, D, GN, 1'b1
);
`else
reg notifier;
U_LD_N_NO(
Q, D, GN, notifier
);
`endif
`ifdef functional
`else
specify
(D => Q) = (1, 1);
(GN => Q) = (1, 1);
$setup(posedge D, posedge GN, 0, notifier);
$setup(negedge D, posedge GN, 0, notifier);
$hold(posedge GN, negedge D, 0, notifier);
$hold(posedge GN, posedge D, 0, notifier);
$width(negedge GN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.520012 |
module DLY12_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.593038 |
module DLY22_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.658846 |
module DLY32_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.971972 |
module DLY42_3B (
A,
Q
);
output Q;
input A;
buf (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.67635 |
module IMUX20_3B (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1_INV(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 7.290641 |
module IMUX21_3B (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1_INV(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 7.033132 |
module IMUX24_3B (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1_INV(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.865181 |
module INV1_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.785885 |
module INV12_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.791616 |
module INV15_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.914052 |
module INV2_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.785421 |
module INV3_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.668879 |
module INV4_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.996808 |
module INV6_3B (
A,
Q
);
output Q;
input A;
not (Q, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.516737 |
module JK1_3B (
C,
J,
K,
Q,
QN
);
output Q, QN;
input C, J, K;
`ifdef functional
U_FJK_P_NO(
buf_Q, J, K, C, 1'b1
);
`else
reg notifier;
U_FJK_P_NO(
buf_Q, J, K, C, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(C => Q) = (1, 1);
(C => QN) = (1, 1);
$setup(posedge J, posedge C, 0, notifier);
$setup(negedge J, posedge C, 0, notifier);
$setup(posedge K, posedge C, 0, notifier);
$setup(negedge K, posedge C, 0, notifier);
$hold(posedge C, negedge J, 0, notifier);
$hold(posedge C, posedge J, 0, notifier);
$hold(posedge C, negedge K, 0, notifier);
$hold(posedge C, posedge K, 0, notifier);
$width(posedge C, 1, 0, notifier);
$width(negedge C, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.655432 |
module JK3_3B (
C,
J,
K,
Q,
QN
);
output Q, QN;
input C, J, K;
`ifdef functional
U_FJK_P_NO(
buf_Q, J, K, C, 1'b1
);
`else
reg notifier;
U_FJK_P_NO(
buf_Q, J, K, C, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(C => Q) = (1, 1);
(C => QN) = (1, 1);
$setup(posedge J, posedge C, 0, notifier);
$setup(negedge J, posedge C, 0, notifier);
$setup(posedge K, posedge C, 0, notifier);
$setup(negedge K, posedge C, 0, notifier);
$hold(posedge C, negedge J, 0, notifier);
$hold(posedge C, posedge J, 0, notifier);
$hold(posedge C, negedge K, 0, notifier);
$hold(posedge C, posedge K, 0, notifier);
$width(posedge C, 1, 0, notifier);
$width(negedge C, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.711998 |
module JKC1_3B (
C,
J,
K,
Q,
QN,
RN
);
output Q, QN;
input C, J, K, RN;
`ifdef functional
U_FJK_P_RB_NO(
buf_Q, J, K, C, RN, 1'b1
);
`else
reg notifier;
U_FJK_P_RB_NO(
buf_Q, J, K, C, RN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(C => Q) = (1, 1);
(C => QN) = (1, 1);
(RN => Q) = (1, 1);
(RN => QN) = (1, 1);
$setup(posedge J, posedge C, 0, notifier);
$setup(negedge J, posedge C, 0, notifier);
$setup(posedge K, posedge C, 0, notifier);
$setup(negedge K, posedge C, 0, notifier);
$recovery(posedge RN, posedge C, 0, notifier);
$hold(posedge C, negedge J, 0, notifier);
$hold(posedge C, posedge J, 0, notifier);
$hold(posedge C, negedge K, 0, notifier);
$hold(posedge C, posedge K, 0, notifier);
$hold(posedge C, posedge RN, 0, notifier);
$width(posedge C, 1, 0, notifier);
$width(negedge C, 1, 0, notifier);
$width(negedge RN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.503592 |
module JKC3_3B (
C,
J,
K,
Q,
QN,
RN
);
output Q, QN;
input C, J, K, RN;
`ifdef functional
U_FJK_P_RB_NO(
buf_Q, J, K, C, RN, 1'b1
);
`else
reg notifier;
U_FJK_P_RB_NO(
buf_Q, J, K, C, RN, notifier
);
`endif
buf (Q, buf_Q);
not (QN, buf_Q);
`ifdef functional
`else
specify
(C => Q) = (1, 1);
(C => QN) = (1, 1);
(RN => Q) = (1, 1);
(RN => QN) = (1, 1);
$setup(posedge J, posedge C, 0, notifier);
$setup(negedge J, posedge C, 0, notifier);
$setup(posedge K, posedge C, 0, notifier);
$setup(negedge K, posedge C, 0, notifier);
$recovery(posedge RN, posedge C, 0, notifier);
$hold(posedge C, negedge J, 0, notifier);
$hold(posedge C, posedge J, 0, notifier);
$hold(posedge C, negedge K, 0, notifier);
$hold(posedge C, posedge K, 0, notifier);
$hold(posedge C, posedge RN, 0, notifier);
$width(posedge C, 1, 0, notifier);
$width(negedge C, 1, 0, notifier);
$width(negedge RN, 1, 0, notifier);
endspecify
`endif
endmodule
| 6.55675 |
module MAJ32_3B (
A,
B,
C,
Q
);
output Q;
input A, B, C;
and (g_1_out, B, A);
and (g_2_out, C, B);
and (g_3_out, C, A);
or (Q, g_1_out, g_2_out, g_3_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.662249 |
module MUX21_3B (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 7.107317 |
module MUX22_3B (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.764038 |
module MUX24_3B (
A,
B,
Q,
S
);
output Q;
input A, B, S;
U_MUX_2_1(
Q, A, B, S
);
`ifdef functional
`else
specify
(S => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.923714 |
module MUX31_3B (
A,
B,
C,
Q,
S0,
S1
);
output Q;
input A, B, C, S0, S1;
U_MUX_3_2(
Q, A, B, C, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (1, 1);
(S1 => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.705814 |
module MUX32_3B (
A,
B,
C,
Q,
S0,
S1
);
output Q;
input A, B, C, S0, S1;
U_MUX_3_2(
Q, A, B, C, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (1, 1);
(S1 => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.77866 |
module MUX41_3B (
A,
B,
C,
D,
Q,
S0,
S1
);
output Q;
input A, B, C, D, S0, S1;
U_MUX_4_2(
Q, A, B, C, D, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (1, 1);
(S1 => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.533857 |
module MUX42_3B (
A,
B,
C,
D,
Q,
S0,
S1
);
output Q;
input A, B, C, D, S0, S1;
U_MUX_4_2(
Q, A, B, C, D, S0, S1
);
`ifdef functional
`else
specify
(S0 => Q) = (1, 1);
(S1 => Q) = (1, 1);
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.714631 |
module NAND32_3B (
A,
B,
C,
Q
);
output Q;
input A, B, C;
nand (Q, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.662284 |
module NAND42_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
nand (Q, D, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.564814 |
module NOR20_3B (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.911753 |
module NOR21_3B (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.676842 |
module NOR22_3B (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.651579 |
module NOR24_3B (
A,
B,
Q
);
output Q;
input A, B;
nor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.660383 |
module NOR32_3B (
A,
B,
C,
Q
);
output Q;
input A, B, C;
nor (Q, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.686906 |
module NOR42_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
nor (Q, D, C, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.517573 |
module OAI2111_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
or (g_3_out, B, A);
nand (Q, D, C, g_3_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.585624 |
module OAI2112_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
or (g_3_out, B, A);
nand (Q, D, C, g_3_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.686703 |
module OAI310_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
or (g_2_out, B, A, C);
nand (Q, D, g_2_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.57734 |
module OAI311_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
or (g_2_out, B, A, C);
nand (Q, D, g_2_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.583937 |
module OAI312_3B (
A,
B,
C,
D,
Q
);
output Q;
input A, B, C, D;
or (g_2_out, B, A, C);
nand (Q, D, g_2_out);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
(C => Q) = (1, 1);
(D => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.819826 |
module XNR20_3B (
A,
B,
Q
);
output Q;
input A, B;
xnor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.677502 |
module XOR20_3B (
A,
B,
Q
);
output Q;
input A, B;
xor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 7.049336 |
module XOR21_3B (
A,
B,
Q
);
output Q;
input A, B;
xor (Q, B, A);
`ifdef functional
`else
specify
(A => Q) = (1, 1);
(B => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.543875 |
module XOR30_3B (
A,
B,
C,
Q
);
output Q;
input A, B, C;
xor (Q, C, B, A);
`ifdef functional
`else
specify
(B => Q) = (1, 1);
(A => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.583281 |
module XOR31_3B (
A,
B,
C,
Q
);
output Q;
input A, B, C;
xor (Q, C, B, A);
`ifdef functional
`else
specify
(B => Q) = (1, 1);
(A => Q) = (1, 1);
(C => Q) = (1, 1);
endspecify
`endif
endmodule
| 6.814727 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.