4 lines
99 B
Verilog
4 lines
99 B
Verilog
module test(input in, input clk, output reg out);
|
|
always @(posedge clk)
|
|
out <= in;
|
|
endmodule
|