16 lines
194 B
Plaintext
16 lines
194 B
Plaintext
|
|
module verilog_test1 (clk,
|
||
|
|
in1,
|
||
|
|
out1);
|
||
|
|
input clk;
|
||
|
|
input in1;
|
||
|
|
output out1;
|
||
|
|
|
||
|
|
wire n1;
|
||
|
|
|
||
|
|
BUF_X1 buf1 (.A(in1),
|
||
|
|
.Z(n1));
|
||
|
|
DFF_X1 reg1 (.D(n1),
|
||
|
|
.CK(clk),
|
||
|
|
.Q(out1));
|
||
|
|
endmodule
|