File size: 152 Bytes
23d354c | 1 2 3 4 5 6 7 8 9 | module sdf_test1 (clk, d, q);
input clk, d;
output q;
wire n1;
BUF_X1 buf1 (.A(d), .Z(n1));
DFF_X1 reg1 (.D(n1), .CK(clk), .Q(q));
endmodule
|
23d354c | 1 2 3 4 5 6 7 8 9 | module sdf_test1 (clk, d, q);
input clk, d;
output q;
wire n1;
BUF_X1 buf1 (.A(d), .Z(n1));
DFF_X1 reg1 (.D(n1), .CK(clk), .Q(q));
endmodule
|