📄 io_lvds_synplify.v
字号:
wire D_n,q_p,q_n,t_p,t_n /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDP olatch_p (.D(D), .G(G), .PRE(PRE), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDC olatch_n (.D(D_n), .G(G), .CLR(PRE), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP tri_p (.D(T), .G(G), .PRE(PRE), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP tri_n (.D(T), .G(G), .PRE(PRE), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
OBUFT_LVDS pad_p (.I(q_p), .T(t_p), .O(O)) /* synthesis syn_noprune = 1 */ ;
OBUFT_LVDS pad_n (.I(q_n), .T(t_n), .O(OB)) /* synthesis syn_noprune = 1 */ ;
endmodule // OBUFTDS_LDP_LVDS
module OBUFTDS_LDPE_LVDS (D,T,GE,G,PRE,O,OB);
input D, T, GE, G, PRE;
output O,OB;
wire D_n,q_p,q_n,t_p,t_n /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDPE olatch_p (.D(D), .GE(GE), .G(G), .PRE(PRE), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDCE olatch_n (.D(D_n), .GE(GE), .G(G), .CLR(PRE), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_p (.D(T), .GE(GE), .G(G), .PRE(PRE), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_n (.D(T), .GE(GE), .G(G), .PRE(PRE), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
OBUFT_LVDS pad_p (.I(q_p), .T(t_p), .O(O)) /* synthesis syn_noprune = 1 */ ;
OBUFT_LVDS pad_n (.I(q_n), .T(t_n), .O(OB)) /* synthesis syn_noprune = 1 */ ;
endmodule // OBUFTDS_LDPE_LVDS
// *********************************
// Start of the Input/Output Buffers
// IO Buffer Flipflops
// *********************************
module IOBUFDS_FD_LVDS (D,T,C,Q,IO,IOB);
input D, T, C;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
wire CLR = 0;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDC off_p (.D(D), .C(C), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP off_n (.D(D_n), .C(C), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP tri_p (.D(T), .C(C), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP tri_n (.D(T), .C(C), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDC iff_p (.D(i_p), .C(C), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FD_LVDS
module IOBUFDS_FDE_LVDS (D,T,CE,C,Q,IO,IOB);
input D, T, CE, C;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
wire CLR = 0;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDCE off_p (.D(D), .CE(CE), .C(C), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE off_n (.D(D_n), .CE(CE), .C(C), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE tri_p (.D(T), .CE(CE), .C(C), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE tri_n (.D(T), .CE(CE), .C(C), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDCE iff_p (.D(i_p), .CE(CE), .C(C), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDE_LVDS
module IOBUFDS_FDC_LVDS (D,T,C,CLR,Q,IO,IOB);
input D, T, C, CLR;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDC off_p (.D(D), .C(C), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP off_n (.D(D_n), .C(C), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP tri_p (.D(T), .C(C), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP tri_n (.D(T), .C(C), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDC iff_p (.D(i_p), .C(C), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDC_LVDS
module IOBUFDS_FDCE_LVDS (D,T,CE,C,CLR,Q,IO,IOB);
input D, T, CE, C, CLR;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDCE off_p (.D(D), .CE(CE), .C(C), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE off_n (.D(D_n), .CE(CE), .C(C), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE tri_p (.D(T), .CE(CE), .C(C), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE tri_n (.D(T), .CE(CE), .C(C), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDCE iff_p (.D(i_p), .CE(CE), .C(C), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDCE_LVDS
module IOBUFDS_FDP_LVDS (D,T,C,PRE,Q,IO,IOB);
input D, T, C, PRE;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDP off_p (.D(D), .C(C), .PRE(PRE), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDC off_n (.D(D_n), .C(C), .CLR(PRE), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP tri_p (.D(T), .C(C), .PRE(PRE), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP tri_n (.D(T), .C(C), .PRE(PRE), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDP iff_p (.D(i_p), .C(C), .PRE(PRE), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDP_LVDS
module IOBUFDS_FDPE_LVDS (D,T,CE,C,PRE,Q,IO,IOB);
input D, T, CE, C, PRE;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDPE off_p (.D(D), .CE(CE), .C(C), .PRE(PRE), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDCE off_n (.D(D_n), .CE(CE), .C(C), .CLR(PRE), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE tri_p (.D(T), .CE(CE), .C(C), .PRE(PRE), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE tri_n (.D(T), .CE(CE), .C(C), .PRE(PRE), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDPE iff_p (.D(i_p), .CE(CE), .C(C), .PRE(PRE), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDPE_LVDS
module IOBUFDS_FDR_LVDS (D,T,C,R,Q,IO,IOB);
input D, T, C, R;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDR off_p (.D(D), .C(C), .R(R), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDS off_n (.D(D_n), .C(C), .S(R), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDS tri_p (.D(T), .C(C), .S(R), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDS tri_n (.D(T), .C(C), .S(R), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDR iff_p (.D(i_p), .C(C), .R(R), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDR_LVDS
module IOBUFDS_FDRE_LVDS (D,T,CE,C,R,Q,IO,IOB);
input D, T, CE, C, R;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDRE off_p (.D(D), .CE(CE), .C(C), .R(R), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDSE off_n (.D(D_n), .CE(CE), .C(C), .S(R), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDSE tri_p (.D(T), .CE(CE), .C(C), .S(R), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDSE tri_n (.D(T), .CE(CE), .C(C), .S(R), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDRE iff_p (.D(i_p), .CE(CE), .C(C), .R(R), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDRE_LVDS
module IOBUFDS_FDS_LVDS (D,T,C,S,Q,IO,IOB);
input D, T, C, S;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDS off_p (.D(D), .C(C), .S(S), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDR off_n (.D(D_n), .C(C), .R(S), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDS tri_p (.D(T), .C(C), .S(S), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDS tri_n (.D(T), .C(C), .S(S), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDS iff_p (.D(i_p), .C(C), .S(S), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDS_LVDS
module IOBUFDS_FDSE_LVDS (D,T,CE,C,S,Q,IO,IOB);
input D, T, CE, C, S;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
FDSE off_p (.D(D), .CE(CE), .C(C), .S(S), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDRE off_n (.D(D_n), .CE(CE), .C(C), .R(S), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDSE tri_p (.D(T), .CE(CE), .C(C), .S(S), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDSE tri_n (.D(T), .CE(CE), .C(C), .S(S), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
FDSE iff_p (.D(i_p), .CE(CE), .C(C), .S(S), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_FDSE_LVDS
// ***************
// IO Buffer Latch
// ***************
module IOBUFDS_LD_LVDS (D,T,G,Q,IO,IOB);
input D, T, G;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
wire CLR = 0;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDC olatch_p (.D(D), .G(G), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP olatch_n (.D(D_n), .G(G), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP tri_p (.D(T), .G(G), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP tri_n (.D(T), .G(G), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDC ilatch_p (.D(i_p), .G(G), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_LD_LVDS
module IOBUFDS_LDE_LVDS (D,T,GE,G,Q,IO,IOB);
input D, T, GE, G;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
wire CLR = 0;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDCE olatch_p (.D(D), .GE(GE), .G(G), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE olatch_n (.D(D_n), .GE(GE), .G(G), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_p (.D(T), .GE(GE), .G(G), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_n (.D(T), .GE(GE), .G(G), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDCE ilatch_p (.D(i_p), .GE(GE), .G(G), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_LDE_LVDS
module IOBUFDS_LDC_LVDS (D,T,G,CLR,Q,IO,IOB);
input D, T, G, CLR;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDC olatch_p (.D(D), .G(G), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP olatch_n (.D(D_n), .G(G), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP tri_p (.D(T), .G(G), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDP tri_n (.D(T), .G(G), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDC ilatch_p (.D(i_p), .G(G), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_LDC_LVDS
module IOBUFDS_LDCE_LVDS (D,T,GE,G,CLR,Q,IO,IOB);
input D, T, GE, G, CLR;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDCE olatch_p (.D(D), .GE(GE), .G(G), .CLR(CLR), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE olatch_n (.D(D_n), .GE(GE), .G(G), .PRE(CLR), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_p (.D(T), .GE(GE), .G(G), .PRE(CLR), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_n (.D(T), .GE(GE), .G(G), .PRE(CLR), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDCE ilatch_p (.D(i_p), .GE(GE), .G(G), .CLR(CLR), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_LDCE_LVDS
module IOBUFDS_LDP_LVDS (D,T,G,PRE,Q,IO,IOB);
input D, T, G, PRE;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDPE olatch_p (.D(D), .G(G), .PRE(PRE), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDCE olatch_n (.D(D_n), .G(G), .CLR(PRE), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_p (.D(T), .G(G), .PRE(PRE), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_n (.D(T), .G(G), .PRE(PRE), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE ilatch_p (.D(i_p), .G(G), .PRE(PRE), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_LDP_LVDS
module IOBUFDS_LDPE_LVDS (D,T,GE,G,PRE,Q,IO,IOB);
input D, T, GE, G, PRE;
output Q;
inout IO,IOB;
wire D_n,q_p,q_n,t_p,t_n,i_p /* synthesis syn_keep = 1 */ ;
INV inv_n (.I(D), .O(D_n)) /* synthesis syn_noprune = 1 */ ;
LDPE olatch_p (.D(D), .GE(GE), .G(G), .PRE(PRE), .Q(q_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDCE olatch_n (.D(D_n), .GE(GE), .G(G), .CLR(PRE), .Q(q_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_p (.D(T), .GE(GE), .G(G), .PRE(PRE), .Q(t_p)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE tri_n (.D(T), .GE(GE), .G(G), .PRE(PRE), .Q(t_n)) /* synthesis syn_noprune = 1 IOB = true */ ;
LDPE ilatch_p (.D(i_p), .GE(GE), .G(G), .PRE(PRE), .Q(Q)) /* synthesis syn_noprune = 1 IOB = true */ ;
IOBUF_LVDS pad_p (.I(q_p), .T(t_p), .O(i_p), .IO(IO)) /* synthesis syn_noprune = 1 */ ;
IOBUF_LVDS pad_n (.I(q_n), .T(t_n), .O() , .IO(IOB)) /* synthesis syn_noprune = 1 */ ;
endmodule // IOBUFDS_LDPE_LVDS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -